+ 1
A BUG
How to ask a question from the user?
1 Risposta
+ 1
That depends on what language you are learning. Looking at the tags and your courses, maybe you are asking about python. To ask an input in python, you have to use the input() function. Example:
a = input()
print(a)
It prints the message inputted by the user. Keep learning the Python Developer Course to learn about it.