Skip to content

Instantly share code, notes, and snippets.

@pjhoberman
Created August 31, 2019 17:43
Show Gist options
  • Save pjhoberman/173937c7ff6246aaa3b2958f7b4bf9c4 to your computer and use it in GitHub Desktop.
Save pjhoberman/173937c7ff6246aaa3b2958f7b4bf9c4 to your computer and use it in GitHub Desktop.
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