使用set去重

1、将列表转换为集合,自动去除重复元素。

python如何列表去重python如何列表去重

(图片来源网络,侵删)

2、将集合转换回列表。

示例代码:

def remove_duplicates(lst):
    return list(set(lst))
my_list = [1, 2, 2, 3, 4, 4, 5]
new_list = remove_duplicates(my_list)
print(new_list)

使用列表推导式去重

1、遍历列表,只保留第一次出现的元素。

示例代码:

def remove_duplicates(lst):
    return [x for i, x in enumerate(lst) if x not in lst[:i]]
my_list = [1, 2, 2, 3, 4, 4, 5]
new_list = remove_duplicates(my_list)
print(new_list)

使用字典去重

1、将列表元素作为字典的键,值可以设置为任意值(如None)。

2、将字典的键转换为列表。

示例代码:

def remove_duplicates(lst):
    return list(dict.fromkeys(lst).keys())
my_list = [1, 2, 2, 3, 4, 4, 5]
new_list = remove_duplicates(my_list)
print(new_list)
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。