Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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.
Advertisements
