Python Dictionary get() Method
نشر بتاريخ 2023-03-07 22:06:39
0
12كيلو بايت
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
البحث
الأقسام
- Arts
- Business
- Computers
- الألعاب
- Health
- الرئيسية
- Kids and Teens
- مال
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
إقرأ المزيد
How Do I Build the Right Team?
Building the right team is one of the most critical steps in achieving success for your business....
How Much Does Education Cost?
How Much Does Education Cost?
Education is often described as an investment in the...
How Do You Build a Strong Community?
Community building is both an art and a science. While the concept of bringing people together...
What Are the Key Phases of a Project?
Project management is a structured approach to planning and guiding project processes from start...
ADHD: Behavioural therapies
There is good evidence for the use of behavioural therapies in ADHD. They are the recommended...