Skip to content
Permalink
Browse files
tweaked greetings
  • Loading branch information
charleswol committed Nov 2, 2020
1 parent 6c92da2 commit e77d2d2
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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():

0 comments on commit e77d2d2

Please sign in to comment.