From e77d2d206c1feee0d2c826b31f8cebff4ac3709d Mon Sep 17 00:00:00 2001 From: charleswol Date: Mon, 2 Nov 2020 15:30:37 +0000 Subject: [PATCH] tweaked greetings --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4f74e00..30839cf 100644 --- a/main.py +++ b/main.py @@ -1,7 +1,7 @@ def greet(usrInput): greetings = ["hello", "hi", "how are you", "Hello", "Hi"] for word in greetings: - if word in usrInput: + if word == usrInput: return True def reply():