gpt4 book ai didi

python - 如何从元组(或 2 个列表)更新字典

转载 作者:太空宇宙 更新时间:2023-11-03 13:03:29 25 4
gpt4 key购买 nike

我认为可以按如下方式更新现有字典:

nameValuePair = 'myKey=myValue'
d.update(nameValuePair.split('='))

但是我得到这个错误:

Traceback (most recent call last):
File "<pyshell#98>", line 1, in <module>
d2.update(item.split('='))
ValueError: dictionary update sequence element #0 has length 1; 2 is required

我查看了有关此主题的其他一些 StackOverflow 问题/答案,这让我认为这是可能的。我一定是遗漏了一些基本的东西......

最佳答案

错误消息已经给了你一个提示:你传递的序列中的每个项目的长度都必须为 2,这意味着它必须由一个键和一个值组成。

因此你必须传递一个二元组 (-lists, -sequences,...) 的元组 (list, sequence,...):

// the value passed will be ((myKey, myValue), )
d.update((nameValuePair.split('='), ))
// ^ ^ ^
// creates a tuple of 1 element

或者你可以这样做:

key, value = nameValuePair.split('=')
d[key] = value

关于python - 如何从元组(或 2 个列表)更新字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11746668/

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