Skip to content
Permalink
main
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
Latest commit fce5b1f Oct 23, 2024 History
1 contributor

Users who have contributed to this file

from StoryAFile import storyA
from StoryBFile import storyB
print("----------4013FTE Week 6 Lab 2 Task----------")
print("----------------<InsertTitleHere>---------------")
print("---------------<InsertAuthorsHere>--------------")
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...")
storyA()
elif x == "b":
print("The light comes on.")
print("You do not recognise the room but you have a really bad feeling...")
storyB()
else:
print("That was not an option. Game Over")