Skip to content
Permalink
Browse files
Update StoryD7.py
  • Loading branch information
staszekm committed Oct 2, 2020
1 parent 567c851 commit 87b67778cc413a69dd95a28b3ece614b75fce3e5
Showing 1 changed file with 60 additions and 0 deletions.
@@ -149,6 +149,66 @@ while next==False:
else:
print("\nPlease ensure the exact word is used(including case)")
#makes sure choice is valid



#mateuszs code
# Put story into here
#Mateusz code
def views():
places = ['palace[1]','science museum[2]','art museum[3]','temple[4]','park[5]']
while len(places) != 0:
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('\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('\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.')
places.remove('palace[1]')
elif go_to == '2' and 'science museum[2]' in places:
print('\nHe decided to visit the National Museum of Nature and Science and compare his notes to the historian’s views on the ancient world. There were hundreds of artifacts and trinkets and so far, the historians and had got most of it bang on.')
places.remove('science museum[2]')
elif go_to == '3' and 'art museum[3]' in places:
print('\nThe National Museum of Western Art was going to be very weird and wonderful. Comparing 1950s New York to the items on display in this museum would be fun to see. Over 100 years worth of knowledge was stored in these display cabinets. He saw the newspaper he had read the day he first used the time machine. He was impressed by the way Japan had developed so fast; collecting all these old items whilst simultaneously expanding on their technological front.')
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('\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]')
elif go_to == '5' and 'park[5]' in places:
print('\nHe travelled to Ueno Park and zoo. The greenery was astoundingly serene, covering the whole park. The zoo was filled with animals from all around the globe including polar bears, African elephants and camels.')
places.remove('park[5]')
views()



























0 comments on commit 87b6777

Please sign in to comment.