gpt4 book ai didi

python - 迭代时将项目添加到字典中

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

在迭代字典时向字典添加项目有多安全?乍一看还不错,但我想知道是否存在不安全的情况。键是字符串 01...等。

最佳答案

迭代时无法更改字典的大小:

>>> foo = {'spam': 'egg'}
>>> for i in foo:
... foo['egg'] = 'spam'
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: dictionary changed size during iteration

您必须首先制作副本:

>>> foo = {'spam': 'egg'}
>>> for i in dict(foo):
... foo['egg'] = 'spam'
...
>>> foo
{'spam': 'egg', 'egg': 'spam'}

关于python - 迭代时将项目添加到字典中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22434928/

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