I wanted a code that prints hi if the user does not type in 1,2,3, else it asks the user to type in an answer again. However, I don't understand what is wrong with my code. However, whatever I type in, the loop will keep asking me to input the number again.
choice=input('Your choice:')
while(choice != 1 or choice !=2 or choice != 3):
choice=input('Please input only 1, 2 or 3:')
print(choice)
else:
print('hi')
Thank you!