The function I wrote has an if, else statement. It seems like it ignores the if, else statement completely.
def start():
task = input("Would you like to begin?\n>>>")
if task == "Yes" or "yes":
rate()
else:
quit()
No matter what I put in the input it automatically performs the function rate() instead of quit().