Adventure Multi Choice

Giving the player more then two choices

choice3 = input("Type a to attack, b to back away or c to creep past.")

if choice3 == "a":

print("You attack with your terrible sword")

elif choice3 == "b":

print("You back away quietly")

else:

print("Carefully you sneak past")

elif is used to provide another choice. You can have as many elif commands as you want

before you get to else which catches anything else the user has typed in.