I am trying to test if an input (a string) is equivalent to 3 different strings ( Only has to be equivalent to one of them). But no matter what input I put in it always comes out equivalent unless I remove the or statements. Can someone explain this to me???
Input_String = 'Random String'
Option_1 = 'rock'
Option_2 = 'paper'
Option_3 = 'scissors'
if Input_String == Option_1 or Option_2 or Option_3:
print(1)
else:
print(2)
# It will always print 1 like this.