Im trying to make it so that if user input is not 1-7 a print statement is made, otherwise if the user chooses a value from 1-7 a corresponding function takes place
this is what ive got so far,
if user_action != 1 or 2 or 3 or 4 or 5 or 6 or 7:
print("Please choose a valid action!")
else:
if user_action == 1:
one_item_information()