gpt4 book ai didi

Python 查找重复项的方法

转载 作者:行者123 更新时间:2023-11-28 19:32:44 24 4
gpt4 key购买 nike

有没有办法找出列表是否包含重复项。例如:

list1 = [1,2,3,4,5]
list2 = [1,1,2,3,4,5]

list1.*method* = False # no duplicates
list2.*method* = True # contains duplicates

最佳答案

如果临时将列表转换为集合,则会消除集合中的重复项。然后您可以比较列表和集合的长度。

在代码中,它看起来像这样:

list1 = [...]
tmpSet = set(list1)
haveDuplicates = len(list1) != len(tmpSet)

关于Python 查找重复项的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11249824/

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