The below will only print 'try again' or follow the exit path. How do I meet the two word criteria (IE 'go' and 'north' for the if statement) on the first two statements, while also being able to meet the single word criteria of the 'exit' elif statement.
proceed = ['go', 'walk', 'travel', 'move']
direction = ['north', 'east', 'south', 'west']
while True:
choice = input("> ").lower()
# result = choice.split()
if choice in proceed and choice == direction[0]:
print("you proceed north")
elif choice in proceed and choice == direction[1]:
print("you proceed east")
elif choice == 'exit':
exit(0)
else:
print("try again")