0 of 1 Questions completed
Questions:
You have already completed the practice exercise before. Hence you can not start it again.
Practice Exercise is loading…
You must sign in or sign up to start the practice exercise.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Question: Create a Python program that asks the user, “What’s your name?”. Save their input as a variable. After they type their answer and press enter, print their name in the output. Check out the GIF below to see how your output should look.
Fill in the program below!
name =
print( )
HINT: You need to print the user’s name. How do we print? Check the print() function template on the last page of your Python Cheat Sheet for some help!