我们可以在python中访问ordereddict中的键和值吗?
作者:互联网
我努力访问有序词典中的项目. d是有序字典:
print d.items()
这里的输出是一对.我想访问这对中的键和值.
解决方法:
您可以解压缩密钥,值(元组),如下所示:
for key, value in d.items():
print (key)
print (value)
这适用于python 2和3.
从docs开始:
Return a new view of the dictionary’s items ((key, value)
pairs).
标签:ordereddictionary,python,dictionary 来源: https://codeday.me/bug/20190728/1563863.html