how ot add str and int code example
Example 1: print string + int in python
print('sum is : ' +str(25))
Example 2: how to add string with number in python
>>> print 'red' + str(3)
red3
>>>
print('sum is : ' +str(25))
>>> print 'red' + str(3)
red3
>>>