Ok i have an if then statement and i want it to display something if the user clicks Yes or No and if they enter something except YES OR NO then it gives an error. But when i do it, i put it in a print variable but even though they put something else it still goes on. Here is the code.
drink = raw_input("Do you want a drink?")
if (drink =="Yes" or drink =="yes"):
print ("Soda\n Coffee \n Latte\n or Smoothie")
drink1 = raw_input("What type of drink will you like?")
print (drink1," coming up")
else:
print ("Error")