Exit=("")
Exit=str(input("Do you require another service? "))
if Exit=="Yes" or "Yeah" or "Y" or "yes":
print("Okay")
elif Exit=="No" or "Nah" or "N" or "no":
print("Terminating Program")
else:
print("Terminating Program")
When Exit=No
, the Yes path is chosen. Why?