可以使用集合来快速查找重复项。
方法一:使用for循环和集合来查找重复项
def find_duplicates(lst):
duplicates = set()
for item in lst:
if lst.count(item) > 1:
duplicates.add(item)
return duplicates
lst = [1, 2, 3, 4, 4, 5, 6, 6, 7]
print(find_duplicates(lst))
输出:
{4, 6}
方法二:使用列表推导式和集合来查找重复项
def find_duplicates(lst):
return set([item for item in lst if lst.count(item) > 1])
lst = [1, 2, 3, 4, 4, 5, 6, 6, 7]
print(find_duplicates(lst))
输出:
{4, 6}
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python torch库导入的方法是什么