Project 2

Source Code

print("Name: Alexa") # add your name here
print("Project 2")
print("Title: Jungle Run")
points = 0 # initial number of points in the game.

print("Your plane has crashed and when you exit, you find")
print("yourself in a humid jungle, unsure if there are")
print("other people around.")
print("Do you re-enter the plane or seek shelter elsewhere?")
print("1 - re/enter")
print("2 - seek sheler")
choice = input("> ")
if choice == "1":
    print("you chose to re-enter")
    # what happens next if they re-enter

elif choice == "2":
    print("you chose to seek shelter")
    # what happens next if they seek shelter

else:
    print("invalid choice")

Last updated