Project 1
Source Code
first_name = "replace with your first name"
last_name = "replace with your last name"
print("Name: " + first_name + " " + last_name)
print("Intro to Coding - Project 1")
print("Title: Jungle Run")
print("Your plane has crashed and when you exit, you find yourself in a humid jungle,")
print("unsure if there are other people around.")
print()
print("Do you re-enter the plane or seek shelter elsewhere? [re-enter/seek shelter]")
choice=input("> ")
if choice == "re-enter":
print("you chose to re-enter")
elif choice == "seek shelter":
print("you chose to seek shelter")
else:
print("invalid choice")
Last updated