Created
April 16, 2018 13:35
-
-
Save asmt3/745175a968283644f76ca7454c8e3c63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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