So basically I've been creating a little narrative choice game in python and it has plenty of choices so it has a lot of if this else that but im confused on why they are not working I've tried to move stuff and to no prevail
print("On the large worktop you see a pot filled with a stew it seems rather fresh")
answer2=input("do you eat it?")
if answer2=="yes" or "Yes" or " yes":
print("The salty taste of the stew makes you splutter but fills your stomach,You gain 3 hp")
else:
print("Out of caution you leave the stew on the work top")
answer3=input("As you leave the kitchen the tunnel splits into two do you go right or left?")
if answer3=="left" or "Left":
print("you head down the left route you hear a slow click spikes rise from the ground and impale your foot you loose 3 hp and slowly limp back to the to the start of the passage and make your way down the right side")
else:
print("you walk down to the end of the passage way")