Skip to content
Permalink
8db15e5a18
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
36 lines (31 sloc) 706 Bytes
import story
import os
import msvcrt as m
# clear the screen
def clear():
print('\nPress enter to continue')
m.getch()
os.system('cls')
# main
def main():
print(story.chairStory)
print(story.context)
selectContect = (input('Please select A,B,C,D...'))
if selectContect == 'a':
print(story.screen)
elif selectContect == 'b':
print(story.timeTravel)
elif selectContect == 'c':
print(story.sept)
else:
pass
clear()
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
print(story.leave)
elif a == 2:
print(story.back)
print(story.decision2)
print(story.con)
main()