作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
迭代一个字典返回一个元组。那么如果迭代重新调整元组,如何使用 key
访问元素呢?我期待迭代提供嵌套字典,以便我可以进一步遍历并使用键访问项目。返回元组后我不能。
>>> d = { 'f': { 'f1': { 'f11':''}, }, 's': { }}
>>> d
{'f': {'f1': {'f11': ''}}, 's': {}}
>>> for p in d.items():
... print(type(p))
... print(p['f1'])
...
<class 'tuple'>
Traceback (most recent call last):
File "<stdin>", line 3, in <module>
TypeError: tuple indices must be integers or slices, not str
最佳答案
如果在 for 循环中解压元组,这可能是最简单的:
for key, val in d.items():
print(key, val)
关于Python如何在迭代字典返回元组时按键访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59954640/
我是一名优秀的程序员,十分优秀!