favouritedrink = input ( "What is your favourite drink?" ) if favouritedrink == "Coke": print("Thats a good healthy choice.") if favouritedrink == "Pepsi": print("Thats a good healthy choice, a little better than Coke.") if favouritedrink == "Water": print("That is not healthy, you should drink Coke.") if favouritedrink == "Milk": print("Im sick of your tricks.") if favouritedrink == "Alcohol": print("Well done for choosing a great healthy drink.") if favouritedrink == "Milkshake": print("You might get a little sugar-rush.")