I'm trying to print two variables together in one print statement in Python and getting TypeError: __add_nor_radd_ _ defined for these operands.
Any one has idea whats going on with this print statement?
Here is what i'm doing:
print var1+var2+var3 ---> all 3 var's are of integer type and when I execute this print statement prints only var1
print var1 +'\t'+ var2 ---> gives the above error...