python字典颠倒
时间: 2024-02-25 17:50:47 浏览: 117
Python字典及字典基本操作方法详解
5星 · 资源好评率100%
Python中可以使用字典的`items()`方法和字典推导式来颠倒字典的键值对。下面是一个示例代码:
```python
# 原始字典
original_dict = {'a': 1, 'b': 2, 'c': 3}
# 使用字典推导式颠倒字典的键值对
inverted_dict = {value: key for key, value in original_dict.items()}
print(inverted_dict)
```
输出结果为:
```
{1: 'a', 2: 'b', 3: 'c'}
```
这样就实现了将原始字典的键值对颠倒的功能。
阅读全文