d = input('What is your favorite drink? ') if d == 'water' : print('What an excellent, healthy choice!') elif d == 'coffee' : print('Careful... not too many cups, or you will go nuts') else : print('What the flippin heck is even that?')