Open advent5 and File, Save As, advent6
Giving the player more then two choices
Vocabulary: elif stands for else if and increases the number of selection options available
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")
elif choice3 == "c":
print("You creep past quietly")
else:
print("You need to type a, b or c only")
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.
Create at least one new choice that uses elif