if/elif/else
name = input("What is your name? ") print("Hello,", name, "I am a chatbot!")
user_input = input("How are you today? ") if user_input == "good": print("I’m glad to hear that!") elif user_input == "bad": print("I’m sorry. I hope things get better.") else: print("Interesting! Tell me more.")