Skip to content
Permalink
3ee09f0946
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (17 sloc) 634 Bytes
print("----------4000CEM Week 4 Lab 2 Task----------")
print("----------------<Textmania>---------------")
print("---------------<Joshua, Philip, Mango. Tomas>--------------")
print("\n")
print("You awake in a dark room. Do you:")
print("a) Scream for help.")
print("b) Press the light switch")
x = input("Enter a or b: ")
if x == "a":
print("Someone hears your screams...")
print("You hear someone approaching")
elif x == "b":
print("The light comes on.")
print("You do not recognise the room but you have a really bad feeling...")
# Contine adventure Here
else:
print("That was not an option. Game Over")