0
input("message")
well, this open a window for user to type, but where is the input stored in this case, since I'm not declaring any variable?
4 Answers
+ 2
its not stored, the message is output to console immediately after it is received.
+ 1
write this
>>> message = input ("Message:")
Message: ciao
>>> print (message)
'ciao'
0
thanks for the answers
0
thanks for the answers