gpt4 book ai didi

python - 在 python 中创建列表的 "for"循环和 "if"条件

转载 作者:太空狗 更新时间:2023-10-30 01:47:41 58 4
gpt4 key购买 nike

source=[1,2,3,4,2,3,5,6]

dst=[]
for item in source:
if item not in dst:
dst.append(item)

print(dst) # [1,2,3,4,5,6]

我可以像这样简化上面的代码吗:

dst=[item for item in [1,2,3,4,2,3,5,6] if item not in 'this array']

谢谢

最佳答案

不,列表推导式不能自指。

您似乎想从列表中删除重复项。参见 thisthis有关此问题的大量方法的问题。

关于python - 在 python 中创建列表的 "for"循环和 "if"条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47885362/

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