import random
die1=''
die2=''
throw=''
player=''
play=(input("Would you like to play?"))
if play == "Yes" or "yes":
die1 = random.randint(1,6)
die2 = random.randint(1, 6)
throw = (die1+die2)
print(throw)
else:
print("Thanks anyways!")
I've been staring at my code for about an hour and I cannot figure out what I have done wrong. Line 9 always comes out as 'True' regardless of the conditional actually being True or not. Could someone please spot what I have done wrong?