Week 4
Source Code
name = "my first name" # replace
print("Week 4 " + name)
# Example 1
# Example 2
# Example 3
# Example 4
# Example 5
# Example 6Project 1
Last updated
name = "my first name" # replace
print("Week 4 " + name)
# Example 1
# Example 2
# Example 3
# Example 4
# Example 5
# Example 6Last updated
first_name = "replace with your first name"
last_name = "replace with your last name"
print("Name: " + first_name + " " + last_name)
print("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")