gpt4 book ai didi

python - 如果列表 B 中的每个项目不返回空列表,则从列表 A 中删除每个项目,即使 A == B

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

我在 jupiter-notebook 中编写了以下 python 代码:

x=['b','x','a']
y=['b','x','a']
for i in x:
if i in y:
x.remove(i)
print (x)

我期望一个空列表,但输出是['x']。代码有什么问题?

最佳答案

您出现此行为是因为您在迭代列表 x 时删除了列表中的项目。

要获得您期望的结果(空列表),您应该使用列表理解:

x = [i for i in x if i not in y]
print(x) # prints []

查看有关同一主题的 StackOverflow 问题:How to remove items from a list while iterating?

关于python - 如果列表 B 中的每个项目不返回空列表,则从列表 A 中删除每个项目,即使 A == B,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53796000/

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