+ 2
any body know the answer : Input example Expected Output name ="Tom" Tom name ="Bob" Bob # Ask the user for input and sto
any body know the answer : Input example Expected Output name ="Tom" Tom name ="Bob" Bob # Ask the user for input and store it in a variable name = # Display the user input on the screen my answer wrong ? # Ask the user for input and store it in a variable name = input("Enter your name: Tom") # Display the user input on the screen print(name)
3 odpowiedzi
+ 2
yes, I know the answer....
look carefully on the task!
does the task require you to print anything when you are asking for an input?
+ 1
Imam Qori ,
we only need 2 lines of code:
(1) take an input from user and store it in the variable `name`
do not any output / prompt in this line.
(2) output the user input that is stored in the variable `name`.
0
# Ask the user for input and store it in a variable
name = input()
# Display the user input on the screen
print(name)