python输入tuple转化为dict
时间: 2023-11-15 20:58:12 浏览: 69
python 将字符串转换成字典dict
5星 · 资源好评率100%
可以使用Python的内置函数zip()和dict()将tuple转换为dict。
代码示例:
```
t = ('a', 'b', 'c')
d = dict(zip(t, range(len(t))))
print(d)
```
输出结果:
```
{'a': 0, 'b': 1, 'c': 2}
```
解释:
1. zip()函数将tuple中的元素和一个range对象中对应索引的元素进行打包,返回一个zip对象。
2. dict()函数将zip对象转换为字典。
阅读全文