drink1 = "water" drink2 = "coffee" drink = input("What is your favourite drink? ") if drink == drink1: print("What an excellent, healthy, choice! ") elif drink == drink2: print("Careful...not too many cups, or you'll go nuts!") else: print("I've never heard of that? ")