gpt4 book ai didi

python删除所有重复项包括该元素

转载 作者:太空宇宙 更新时间:2023-11-04 08:25:04 25 4
gpt4 key购买 nike

input: [1,1,2,2,3,3,4,5,5,6,6]

output: 4

尝试过、设置、形成新列表,但无法弄清楚如何删除所有重复项,包括元素本身。

最佳答案

my_list = [1, 1, 2, 2, 3, 3, 4, 5, 5, 6, 6]
filtered_list = [value for value in my_list if my_list.count(value) == 1]
print(filtered_list)
[4]

关于python删除所有重复项包括该元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58148180/

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