Just do this:
key_words = ["enterprise", "customer"]
userInput = input("How may I help you?")
for word in userInput.split()
if word in key_words:
return true
else:
return false
Stuff like this may help. If it isn't or anything is wrong, plz tell me cuz im also a beginner! 😀