diff --git a/StoryD7.py b/StoryD7.py index 19b1122..2881f45 100644 --- a/StoryD7.py +++ b/StoryD7.py @@ -6,10 +6,10 @@ def views(): print('\nThere are so many sights and scenery in Tokyo so theres so much to see and do.') print('\nplease choose a number') print('\n%s' % places) - go_to = input('go to: ') + go_to = input('\ngo to: ') if go_to == '1': print('\nThe Imperial Palace was his best bet to see what had changed. Crossing the Seimon Ishibashi bridge, he found the Emperor of Japan welcoming guests into his hall. There must’ve been a party; why not go and relax after all the hard work?') - proceed = input('go and relax at the party[1], Go see more sights[2] ') + proceed = input('\ngo and relax at the party[1], Go see more sights[2] ') print(proceed) if proceed == '1' and 'palace[1]' in places : print('\nRicardo went inside and saw the beautiful golden interior. It must’ve been redesigned – robots raced across the floors to deliver food to esteemed guests, dragons would fly across the room and refill glasses and cup. It was fascinating.') @@ -22,7 +22,7 @@ def views(): places.remove('art museum[3]') elif go_to == '4' and 'temple[4]' in places: print('\nSensō-ji Temple was a masterpiece and also Tokyo’s most famous shrine. The Asakusa district was famous for its various festivals such as the Sanja Matsuri.') - proceed = input('go to the festival[1], go see more sights[2]: ') + proceed = input('\ngo to the festival[1], go see more sights[2]: ') if proceed == '1': print('\nThe festival was beautiful: lights shining everywhere, traditional dancing and music from as far as the eye could see.') places.remove('temple[4]')