python简单遍历字典及删除元素的方法

本文实例讲述了python简单遍历字典及删除元素的方法。分享给大家供大家参考,具体如下:

这种方式是一定有问题的:

d = {‘a’:1, ‘b’:2, ‘c’:3}
for key in d:
d.pop(key)

会报这个错误:runtimeerror: dictionary changed size during iteration

这种方式python2可行,python3还是报上面这个错误。

d = {‘a’:1, ‘b’:2, ‘c’:3}
for key in d.keys():
d.pop(key)

python3报错的原因是keys()函数返回的是dict_keys而不是list。python3的可行方式如下:

d = {‘a’:1, ‘b’:2, ‘c’:3}
for key in list(d):
d.pop(key)

更多python简单遍历字典及删除元素的方法相关文章请关注php中文网!

Posted in 未分类

发表评论