0
Why does this not work x=input(enter your name) Print("hi",x)
2 Respuestas
+ 1
In order to use the input function and print a string you must wrap the string in quotes " " or ' '. Otherwise the input will treat the string as a variable.
0
Thank you very much