Skip to content

Instantly share code, notes, and snippets.

@jmangrad
Last active May 30, 2020 23:44
Show Gist options
  • Save jmangrad/3882b9bb52ce5467bfff0050d91accff to your computer and use it in GitHub Desktop.
Save jmangrad/3882b9bb52ce5467bfff0050d91accff to your computer and use it in GitHub Desktop.
Write a program that uses input to prompt a user for their
name and then welcomes them.
name = input("Enter your name: ") # asks user for their name
print("Welcome {}".format(name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment