As if u guys compile the code, even though my if statement and my while loop are right, they aren't working together, please help me
question_1_prologue = input("Are you ready to help me save the world?\na) Of course\nb) No\n")
print()
while question_1_prologue != "a" or "A" or "a)" or "A)":
print ("This game was not made for you")
break
if question_1_prologue == "a" or "A" or "a)" or "A)":
print ('Good choice, heroes never die')
the "Good choice, heroes never die" is working when we input a, but if u input anything different, you will get both messages "Heroes never die" and also "This game was not made for you"