#Favourite food food = input("what is yuor favourite food? ") if food == "Macdonalds": print("Obviously Macdonalds is good") else: print("That's pretty good") #Favourite superhero superhero = input("How about this... What's your favourite superhero? ") if superhero == "Hulk": print("That's my favourite superhero too") else: print("If that's who you choose i cant complain") #Favourite team sport team = input("OK last question, what is your favourite team sport? ") if team == "lakers": print("I'd support that team aswell to be honest. Anyway the program has ended, good job") else: print("The program has ended, good job")