python将dict转化为元组
时间: 2023-10-19 08:05:51 浏览: 82
如何将python中的List转化成dictionary
可以使用dict.items()方法将字典转化为元组列表,每个元组包含一个键值对。例如:
```
my_dict = {'a': 1, 'b': 2, 'c': 3}
my_tuple = tuple(my_dict.items())
print(my_tuple)
```
输出结果为:
```
(('a', 1), ('b', 2), ('c', 3))
```
阅读全文