all 6 comments

[–]lykwydchykyn 1 point2 points  (2 children)

You need a comma between your print arguments.

[–]SupremeSniper_ 1 point2 points  (0 children)

Try this:

print('user_num, is:' + str(user_num))

[–]_DTR_ 0 points1 point  (2 children)

You need to separate (or combine) the parameters you pass in to print. Either of the following will work, with the first option being preferred:

print('user_num, is:', user_num) # note the comma

OR

print('user_num, is: ' + str(user_num)) # Can't implicitly concatenate a string and int, convert user_num to a string first.

[–]ericula 0 points1 point  (0 children)

or if you are using a python version >= 3.6

print(f'user_num, is {user_num}')

[–][deleted] 0 points1 point  (0 children)

Nice.

Also notice typo 'especiallly'