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