迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

Python 中 RuntimeError: dictionary changed size during iteration 错误

作者:迹忆客 最近更新:2023/01/26 浏览次数:

Python“RuntimeError: dictionary changed size during iteration”发生在我们在迭代字典时改变字典的大小时。 要解决该错误,请使用 copy() 方法创建可以迭代的字典的浅表副本,例如 my_dict.copy()

下面是发生上述错误的一个示例。

my_dict = {'a': 1, 'b': 2, 'c': 3}

# ⛔️ RuntimeError: dictionary changed size during iteration
for key in my_dict:
    print(key)
    if key == 'b':
        del my_dict[key]

Python 中 RuntimeError- dictionary changed size during iteration

迭代字典时不允许更改字典的大小。

解决该错误的一种方法是使用 dict.copy 方法创建字典的浅表副本并迭代该副本。

my_dict = {'a': 1, 'b': 2, 'c': 3}

for key in my_dict.copy():
    print(key)
    if key == 'b':
        del my_dict[key]

print(my_dict) # 👉️ {'a': 1, 'c': 3}

遍历字典并更改其大小会扰乱迭代器,因此创建浅表副本并遍历副本可以解决问题。

我们还可以将字典的键转换为列表并遍历键列表。

my_dict = {'a': 1, 'b': 2, 'c': 3}

for key in list(my_dict.keys()):
    print(key)
    if key == 'b':
        del my_dict[key]

print(my_dict)  # 👉️ {'a': 1, 'c': 3}

dict.keys() 方法返回字典键的新视图。

my_dict = {'id': 1,  'name': 'Alice'}

print(my_dict.keys())  # 👉️ dict_keys(['id', 'name'])

我们使用 list() 类在示例中创建键的副本。

我们也可以以类似的方式使用 dict.items() 方法。

请注意 ,在使用 dict.items() 时,我们可以访问当前迭代的键和值。

my_dict = {'a': 1, 'b': 2, 'c': 3}

for key, value in list(my_dict.items()):
    print(key, value)  # 👉️ a 1, b 2, c 3
    if key == 'b':
        del my_dict[key]


print(my_dict)  # 👉️ {'a': 1, 'c': 3}

我们使用 list() 类来创建字典项目的副本。

dict.items 方法返回字典项((键,值)对)的新视图。

my_dict = {'id': 1,  'name': 'Alice'}

print(my_dict.items()) # 👉️ dict_items([('id', 1), ('name', 'Alice')])

我们选择哪种方法是个人喜好的问题。 我会使用 dict.copy() 方法。

该方法返回字典的浅表副本,因此它很容易阅读并解决了无法遍历字典和更改其大小的问题。


总结

Python“RuntimeError: dictionary changed size during iteration”发生在我们在迭代字典时改变字典的大小时。 要解决该错误,请使用 copy() 方法创建可以迭代的字典的浅表副本,例如 my_dict.copy()

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Python 中的 Pandas 插入方法

发布时间:2024/04/23 浏览次数:112 分类:Python

本教程介绍了如何在 Pandas DataFrame 中使用 insert 方法在 DataFrame 中插入一列。

Pandas 重命名多个列

发布时间:2024/04/22 浏览次数:199 分类:Python

本教程演示了如何使用 Pandas 重命名数据框中的多个列。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便