Python Dictionary get() Method
Postado 2023-03-07 22:06:39
0
9KB
With the built-in get() method, you can get the value from retrieving the specific key. If you put in a key that doesn't exist in the dictionary, it'll raise a KeyError. Here's an example:
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
x = car.get("model")
print(x)
>> Mustang
Pesquisar
Categorias
- Arts
- Business
- Computers
- Jogos
- Health
- Início
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Leia mais
Egypt
Egypt (Arabic: Yeghipet; مصر Misr/Miṣr [misʕɾ], masri مصر Masr/Maṣr [ˈmɑsʕɾ], Copt. Ⲭⲏⲙⲓ...
UNESCO
WHAT IS UNESCO?UNESCO is an agency of the United Nations Educational, Scientific and Cultural...
Autism Spectrum: Management
There is no treatment as such for autism, and many sources advise that this is not an appropriate...
Within Project Management: Frequently Asked Questions (FAQs)
Project management is the structured approach to planning, executing, and finalizing projects...
How Can I Validate My Startup Idea Before Launching?
One of the most critical steps in launching a successful startup is ensuring that your idea has a...