This is my code:
print("What is your Name")
user_name = input("User Name: ")
print(f"Hello {user_name} please choose a dish and a drink from this menu : \n Fish \t Eggs \n Water \t Juice")
food = input("Please input your desired dish: ")
drink = input("Please input your desired drink: ")
if food != "Fish" or "Eggs":
print("Please input a correct dish or drink")
else:
print(f"{user_name} your desired drink is {drink} and your desired dish is {food}")
The main problem is the final part. I'm trying to say "if food is not equal to Fish or Eggs print the error message but if it is print the success message". But, if you copy the code and follow it at the end it always prints the error message.