+ 1
What mistake I am making in this code? Please Write correct code in the reply!!!!
x = input() print("Your number is: " str(x) )
2 Answers
+ 3
print("..." + str(x)) you left out the concatenation operator +
+ 2
Thank You Michal Halaska for helping me