Skip to content

Instantly share code, notes, and snippets.

@KKarthikeya
Last active September 10, 2020 15:52
Show Gist options
  • Save KKarthikeya/615f24e1ca2fd956ebff to your computer and use it in GitHub Desktop.
Save KKarthikeya/615f24e1ca2fd956ebff to your computer and use it in GitHub Desktop.
Write a program that uses raw_input to prompt a user for their name and then welcomes them. Note that raw_input will pop up a dialog box.
#Write a program that uses raw_input to prompt a user for their name and then welcomes them. Note that raw_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.
name = raw_input("Enter your name:")
print "Hello",name
@Ashwinarora35
Copy link

wrong ans

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment