# asks the question and gives the choices   
choice=input('what is your favourite colour? press 1 for red, 2 for blue, 3 for yellow or 4 to quit') 
# if the responder responds with choice 1 or 2,3,4 it will print this
if choice=='1' or 'one':
    print('red means anger') 
elif choice=='2'or 'two':
    print('blue represents calmness')
elif choice=='3' or 'three':
    print('yellow represents happiness')
elif choice=='4' or 'four':
    print('it was nice meeting you. goodbye.')
else:
    print('sorry incorrect answer please try again.')
One of my students wrote this and I can't seem to get it working. HELP! It keeps repeating red means anger. If I comment out the 'or', it works but why can't she use 'or'? I want her to add a loop but only if this works first.
 
     
    