I cant figure out how to display the inputmessage. because e=input("doesnt work") | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I cant figure out how to display the inputmessage. because e=input("doesnt work")

19th Aug 2016, 11:00 PM
Bruno Lönne
Bruno Lönne - avatar
5 Answers
+ 2
You have to print it. If you want a message to appear use the first example, if you want just the input to appear leave the brackets empty like in the second one. e = input("This is your input: ") print(e) e = input() print(e)
19th Aug 2016, 11:16 PM
Doc
Doc - avatar
+ 1
well what im trying to do is to show a message in the inputpopup so that the user of the program gets an idea of what to input
19th Aug 2016, 11:21 PM
Bruno Lönne
Bruno Lönne - avatar
+ 1
just so you understand: in the pc version something in e=input(" HERE ") is displayed when input is needed by the way thanks for your help
19th Aug 2016, 11:27 PM
Bruno Lönne
Bruno Lönne - avatar
+ 1
that is a problem with the code playground since it just says you need input. If prople want to know what kind of input they have to read the code. on the idle version its much simpler since it will show you what to input
20th Aug 2016, 9:01 AM
Tom Post
Tom Post - avatar
+ 1
actually i've found a solution on my own by now im using Qpython3
20th Aug 2016, 12:55 PM
Bruno Lönne
Bruno Lönne - avatar