gpt4 book ai didi

python - 值错误 : too many values to unpack for sorted dictionary

转载 作者:太空宇宙 更新时间:2023-11-04 09:00:17 25 4
gpt4 key购买 nike

我收到异常“ValueError:要解压的值太多”,以下代码有什么问题?

for key, item in sorted(resDic):
outFiles.write('%s %s\n' % (key, item))

最佳答案

sorted(resDic) 只返回键。要同时返回键和值,请编写 sorted(resDic.items()):

for key, item in sorted(resDic.items()):
outFiles.write('%s %s\n' % (key, item))

关于python - 值错误 : too many values to unpack for sorted dictionary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26192541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com