I wrote this code to ask the user for options A, B, or C and show a message afterward, but even if I type the correct options, it still sends me the 'try again' message. what can I do so the program runs correctly
option = str(input('\nChoose A, B or C: '))
while option.lower() != 'A' or 'B' or 'C':
print('\nThat option is not availible, try again')
option = str(input('\nChoose A, B or C'))
if option.lower() == 'A' or 'B' or 'C':
print(f'You chose: {option}')
I was expecting the program to return the letter I choose only if it is A, B or C. otherwise print the 'try again message'