I'm new to this and trying to have a loop iterate through a series of numbers until 2 different users say yes to a specific number.
If both users say yes to a number, I'd like the program to print "You both picked [X]!" with X being the number, and for the loop to stop at this point.
If either user says no, however, I'd like the loop to simply continue on to the next number. Why does the below code not work to achieve this?
for i in range(100):
user1_response = input("User One: Would you like to pick " + str(i) + "? ")
user2_response = input("User Two: Would you like to pick " + str(i) + "? ")
if (user1_response == "N" or "No" or "Reject") or (user2_response == "No" or "N" or "Reject"):
continue
else:
print("")
print("Both users picked" + str(i) + "!")
break