Python Dictionary Key/Value Swap
نشر بتاريخ 2023-03-03 21:55:48
0
14كيلو بايت
You can change the keys and values in a dictionary using a loop and items(). This can be helpful if the key doesn't exist in the dictionary, but the value exist. Here's an example:
d = {'key1': 'val1', 'key2': 'val2', 'key3': 'val3'}
d_swap = {v: k for k, v in d.items()}
print(d_swap)
# {'val1': 'key1', 'val2': 'key2', 'val3': 'key3'}
البحث
الأقسام
- Arts
- Business
- Computers
- الألعاب
- Health
- الرئيسية
- Kids and Teens
- مال
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
إقرأ المزيد
How to Find Affiliate Programs
Most beginners think affiliate marketing starts with traffic.
It doesn’t.
It starts with...
What Are Tax-Advantaged Employee Benefits?
What Are Tax-Advantaged Employee Benefits?
Tax-advantaged employee benefits are compensation...
Are On-Demand Services More Expensive?
A few years ago, I overheard two friends debating whether ordering groceries through an app was...
What Is the Difference Between Outdoor Advertising and Billboard Advertising?
Outdoor advertising and billboard advertising are often used interchangeably, but they are not...
Is Google Analytics Free to Use?
One of the reasons Google Analytics has become the most popular web analytics tool in the world...