Python: Cannot understand why the error - cannot concatenate 'str' and 'int' object ?



This can be corrected by putting n+1 in brackets i.e. (n+1)

for num in range(5):
    print ("%d" % (num+1))

Using %d casts the object following % to string. Since a string object can't be concatnated with a number (1 in this case) interpreter displays typeerror.

Updated on: 2020-03-13T05:15:39+05:30

178 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements