python how to add int into a print code example
Example 1: print integer python
x = int ("5") + int("7")
print (x)
Example 2: how to add string with number in python
>>> print 'red' + str(3)
red3
>>>
x = int ("5") + int("7")
print (x)
>>> print 'red' + str(3)
red3
>>>