hey im doing the learn python the hard way thing and im stuck at exercise 36 where you are to build something yourself. i have following code i have been going through this a lot of time trying to find my error/errors
choice = raw_input("> ")
if choice == "smack it" or "kick it":
print "the tiger gets angrier and eats your head of"
exit(0)
elif choice == "offer it the beef" or "offer it beef" or "offer it the beef in my pocket":
print "the tiger enjoys the treat"
print "and lets you go to the next room"
bear_room
else:
print "the tiger smels the beef you have in you pocket and eats you"
exit(0)
but the problem is that no matter what i type in raw input it just executes as if the first if statement is true and prints "the tiger gets angrier and eats your head off." please help me find my error