I have a script for a small quick trivia type questionnaire.
My issue is that the console keeps printing out "Correct" no matter what, even when I type the wrong answer.
I need it to answer even case insensitive is what I'm trying to achieve.
q1 = input("Whos one on the one dollar bill?")
answer1 = "George Washington"
if q1 == answer1 or answer1.lower():
print("Correct!")
else:
print("Incorrect.")