Skip to content

Instantly share code, notes, and snippets.

@asmt3
Created April 16, 2018 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save asmt3/745175a968283644f76ca7454c8e3c63 to your computer and use it in GitHub Desktop.
Save asmt3/745175a968283644f76ca7454c8e3c63 to your computer and use it in GitHub Desktop.
person = input('Enter your name: ')
print('Hello', person)
while True:
response = input("I'm meeting Dave and Emma for pizza on Friday. Would you like to come, " + person + "?\n")
if response == "yes":
print("great! See you there")
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment