I’m fairly new to python coding so I’m trying to challenge myself to do elif statements and I can’t find how to fix this problem

So here is my code and I can’t see what causes the error. foods = int(input("What is your favorite food?: ")) if foods == apple: print("you like fruits!") elif foods == pork: print("you like meat!") elif foods == egg: print("you like poultry!") The error is line 3, in <module> foods = int(input("What is your favorite … Read more