- 1
Input
I cant use input to ask a question in python. Please help
1 Answer
+ 2
Luke Hobson
I sympathise, it took me 2 days to understand the lesson also
question = input()
print(question)
The first line creates a variable called "question" which then stores the value/content of the user input, which is created by input()
The second line outputs the content of the variable "question"
Keep learning, you will pick it up