Welcome to Westonci.ca, the place where your questions are answered by a community of knowledgeable contributors. Get immediate and reliable answers to your questions from a community of experienced experts on our platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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.

Sagot :

user_name = str (input = ("Please enter your name: "))

def greet (user_name):

print ("Welcome to your ghetto, {0}!".format(user_name) )