Skip to content
Permalink
master
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
from StoryAFile import storyA
from StoryBFile import storyB
from time import sleep
print("----------4000CEM Week 4 Lab 2 Task----------")
print("---------------- Text Adventure ---------------")
print("--------------- By Ayo, Ben --------------")
print("\n")
print("You awake at 5pm. Your lectures started at 9am. Do you:")
print("a) Scream for help")
print("b) Get out of bed")
x = input("Enter a or b: ")
if x == "a":
print("Someone hears your screams...")
storyA()
elif x == "b":
print("It's dark.")
print("Your head is spinning, and your memory of the night before is patchy...")
storyB()
else:
print("That was not an option. Game Over")