py-labs/variableintro.py
2020-07-07 19:59:34 +01:00

4 lines
61 B
Python

num = 2
strn = "hello"
#print str + num
print strn + str(num)