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