Skip to content
Permalink
Browse files
now its done
  • Loading branch information
staszekm committed Oct 2, 2020
1 parent 2e29e9a commit e8a50db90e65febea37373736de0426a432e9d8f
Showing 1 changed file with 3 additions and 3 deletions.
@@ -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]')

0 comments on commit e8a50db

Please sign in to comment.