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():