drink01 = "water" drink02 = "coffee" drink = input("What is your favourite drink?" ) if drink == drink01 : print("What an excellent, healthy choice!") elif drink == drink02 : print("Be careful, too much coffee will send you overboard...") else: print("What even is that..?")