Python Dictionary Key/Value Swap
Postado 2023-03-03 21:55:48
0
9K
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'}
Pesquisar
Categorias
- Arts
- Business
- Computers
- Jogos
- Health
- Início
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Leia Mais
Hope Channel International. Live TV. USA
Hope Channel began broadcasting in North America in 2003. Today, Hope Channel is a global network...
How to rent an apartment - features of finding a tenant and common mistakes of landlords
Renting out an apartment is one of the ways to generate income for property owners. It seems that...
What Are the Benefits and Risks of Entrepreneurship?
Entrepreneurship is an exciting journey that offers financial independence, creativity, and the...
What is an APR
About APR
Technically speaking, APR (annual percentage rate) is a numeric representation...
How Can I Motivate My Team Without Relying Solely on Financial Incentives?
In today’s dynamic work environment, leaders are increasingly seeking ways to motivate...