Skip to content
Permalink
Browse files
added context
  • Loading branch information
fergusonr committed Oct 2, 2020
1 parent 1de0dec commit 444dc003a082d98771937cfd6f784bc53ae7249d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
@@ -12,7 +12,16 @@ import story
# main
def main():
print(story.chairStory)

print(story.)
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
print(story.decision)
a = int(input('Please select 1 or 2...'))
if a == 1:
BIN -268 Bytes (96%) __pycache__/story.cpython-37.pyc
Binary file not shown.
@@ -117,4 +117,11 @@ con = '''



context = '''
would you like to find out anymore information about any of the following?
A) The Screen B) Time Travel
c) 19th Of September D) Continue With The Choice
'''


0 comments on commit 444dc00

Please sign in to comment.