play = input("Would you like to play Steal or Deal [y|n]? ")
if play != "y" or "n":
print('Please enter either "y" or "n".')
regardless of input, the output ends up
Would you like to play Steal or Deal [y|n]? y <---- (or "n")
Please enter either "y" or "n".
Is there just something I'm missing?