generate functionSat, 13 May 2023
A ai chatbot
def chat(sentence): if 'hello' in sentence: return 'hello' elif 'how are you' in sentence: return 'I am good' else: return "I don't understand" chat('hello') chat('how are you') chat('I am good')
Python
Generate More