可以通过使用set()函数,将列表转换为集合,实现列表去重。
例如:
lst = [1, 2, 3, 3, 4, 5, 5]
new_lst = list(set(lst))
print(new_lst)
输出结果为:[1, 2, 3, 4, 5]
或者可以使用列表推导式来实现列表去重:
lst = [1, 2, 3, 3, 4, 5, 5]
new_lst = [x for x in lst if x not in new_lst]
print(new_lst)
输出结果为:[1, 2, 3, 4, 5]
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python的print()函数如何进行换行控制