gpt4 book ai didi

python - 从 Python 字典中弹出许多元素的最佳方法

转载 作者:太空狗 更新时间:2023-10-29 17:09:25 24 4
gpt4 key购买 nike

这是我的代码:

a = dict(aa='aaaa', bb='bbbbb', cc='ccccc', ...)
print(a.pop(['cc', ...]))

但这会引发错误。从 python 字典中弹出许多元素的最佳简单方法是什么?

最佳答案

简单的怎么样:

for e in ['cc', 'dd',...]: 
a.pop(e)

关于python - 从 Python 字典中弹出许多元素的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5333898/

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