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
إقرأ المزيد
Why is personal development important?
Why Is Personal Development Important?
Personal development is important because it directly...
Types of Computers
Types of Computers
Computers are distinguished by a variety of criteria, which are related to...
What Is Capitalism?
What Is Capitalism?
Capitalism is an economic system that organizes how goods and services are...
Exploring Kids and Teens Entertainment: From Screen Time to Creative Play
Exploring Kids and Teens Entertainment: From Screen Time to Creative Play
Entertainment plays a...
Top Questions to Ask Your Mentor
Entering a mentoring relationship is an exciting opportunity for growth, learning, and...