Checkpoint 16.10.1.
Answer the following questions based on this code snippet.
name = input("Enter your name: ")
print(name)
-
What does
input()do? -
What message is shown to the user?
-
What variable stores the userβs response?
-
What data type is the value returned by
input()?
