can not concatenate int to str python code example
Example 1: concatenate int to string python
string = 'string'
for i in range(11):
string +=str(i)
print string
Example 2: can only concatenate str (not "int") to str
# To solve the issue, just add str to your number or value like:
print( "Alireza" + str(1980))