How do I get it so that I can make a while loop work with 'or' for example
start = input(("Would you like to start? "))
while start == "yes" or "YES" or "Yes":
Then later on I have the code
start = input(("Would you like to start again? "))
if start == "no" or "No" or "NO":
break
When I try this code it does not work. It starts the code at the beginning and breaks at the end no matter what I enter. Can anyone help?