Типи даних у Python
Jason Myers
Instructor
dict() або {}art_galleries = {}
for name, zip_code in galleries:
art_galleries[name] = zip_code
for name in sorted(art_galleries)[-5:]:
print(name)
Zwirner David Gallery
Zwirner & Wirth
Zito Studio Gallery
Zetterquist Galleries
Zarre Andre Gallery
art_galleries['Louvre']
|--------------------------------------------------------------------
KeyError Traceback (most recent call last)
<ipython-input-1-4f51c265f287> in <module>()
--> 1 art_galleries['Louvre']
KeyError: 'Louvre'
.get() дає змогу безпечно звертатись до ключа без помилки чи обробки винятків.get() повертає None за замовчуванням, або можна вказати значення для поверненняart_galleries.get('Louvre', 'Not Found')
'Not Found'
art_galleries.get('Zarre Andre Gallery')
'10011'
Типи даних у Python