for nodes, bw in bws.iteritems(): 报错AttributeError: 'dict' object has no attribute 'iteritems'
时间: 2023-09-29 20:03:04 浏览: 150
blog.open-nodes.org:http
这个错误是因为在 Python 3 中,`iteritems()` 方法已经被取消了。相反,你应该使用 `items()` 方法,它返回一个字典项的迭代器。所以你应该这样写:
```
for nodes, bw in bws.items():
# do something with nodes and bw
```
这样就可以遍历字典 `bws` 中的所有项了。
阅读全文