This is my code:
def main():
name = input("What's your name?")
req1 = input("Do you have a GPA 3.0 or higher?")
req2 = input("Are you currently attending math courses?")
req3 = input("Do you enjoy math?")
if(req1 == "y", "Yes", "yes" or req2 == "y", "Yes", "yes"):
req1or2 = 1
else:
req1or2 = 0
if(req3 == "y", "Yes", "yes"):
req3 = 1
else:
req3 = 0
if(req1or2 == 1 and req3 == 1):
print("Congratulations " + str(name) + "!")
print("You're in the math club now!")
else:
print("Try again next semester")
main()
and its always printing the first if strings even when the condition is false