Created
August 31, 2019 17:43
-
-
Save pjhoberman/173937c7ff6246aaa3b2958f7b4bf9c4 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
answers = { | |
"Hi": "Hi.", | |
"HI": "Hi.", | |
"hi": "Hi.", | |
"How are you?": "Good, Thanks for Asking,", | |
} | |
if Word in answers: | |
print(answers[Word]) | |
else: | |
print("I Can't Understand You.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment