Question
2.2 Write a program that uses input to prompt a user for their name and then welcomes them. Note that input will pop up a
2.2 Write a program that uses input to prompt a user for their name and then welcomes them. Note that input will pop up a dialog box. Enter Sarah in the pop-up box when you are prompted so your output will match the desired output.
Code I wrote: name = input('Enter your name:') print ('Hello Sarah')
I got the desired output which is: Hello Sarah
Error message was that I actually had to prompt for the user's name. How do I do this?
Desired output: Hello Sarah
Programming language: Python
Original sample code:
# The code below almost works
name = input("Enter your name") print("Howdy")
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started