How can I use both int and str in Python3.6?
num1 = int(input("NUMBER1"))
num2 = int(input("NUMBER2"))
print("NUMBER1 is" + num1)
I use '+' because I dont want space(_) between 'is' and 'num1'
This code has TypeError: must be str, not int.
How can I use both int and str in Python3.6?
or
How can I remove space(_) when I use comma(,)?