gpt4 book ai didi

python - 如何修复 "ValueError: not enough values to unpack (expected 2, got 1)"

转载 作者:行者123 更新时间:2023-12-03 23:11:56 24 4
gpt4 key购买 nike

我正在尝试使用 tkinter 和 python 制作音乐应用程序,但我无法摆脱“ValueError: not enough values to unpack (expected 2, got 1)”错误。看看我的代码,你会很清楚我在处理什么。

机制很简单,我首先通过dictionary(list)显示歌曲选项,取输入后,对应“j”的值,(例如,如果输入为1,则j为1,j对应的值i) 保存为歌曲名称并通过播放音乐执行程序。

list = {
'1':'Say You Won t Let Go.mp3','2':'In the Jungle the mighty jungle.mp3'
}
lost = ''
print(list)
print("which one?")
this_one = int(input(''))
for j,i in list:
if j == this_one:
lost = i

最佳答案

您必须使用 list.items()

for i, j in list.items():
...

关于python - 如何修复 "ValueError: not enough values to unpack (expected 2, got 1)",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56375041/

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