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
### Storyline A
def StoryA():
print("The footsteps suddenly stop...")
print("Do you either:")
print("a) scream again")
print("b) keep quiet")
x = input("Enter a or b: ")
x = x.lower()
if x == "a":
print("The door swings open, the dark figure carrying a gun...")
print("It seems your story has ended here...")
print("Game over")
elif x == "b":
print("You hear the footsteps growing quieter.")
print("'Maybe they didnt hear me' you think to yourself; maybe this was for the best")
else:
print("It seems you entered an invalid command, try again")
StoryA()