I am trying to make my input were it will accept lower or upper case yes or no from the keyboard.
a = input("Would you like to spin the wheel?Enter yes/no to continue\n")
if a == "yes":
play_game(count)
if a =="no":
exit()
else:
if a != "yes" or a != "no":
print_pause("Please enter in a valid input. yes/no\n")
input()