# .lower() function will later help to ignore upper case so use can type PizZa or pIZza and it will also work favourite_food = input('What is your favourite food? Pizza or burgers?').lower() if favourite_food == 'pizza': print('Pizza is definitely the best') elif favourite_food == 'burger': print('Burger are nice, but I prefer pizza') # We can also add else if user type something else, but it was not mention in excercise