在Python列表中,删除相似或重复的值,并且只保留一次,可以使用以下方法:
方法一:使用set()函数
my_list = [1, 2, 3, 2, 4, 3, 5, 6, 5]
my_list = list(set(my_list))
print(my_list)
输出:
[1, 2, 3, 4, 5, 6]
使用set()函数可以将列表转换为集合,集合中的元素是唯一的,然后再将集合转换回列表即可。
方法二:使用循环遍历
my_list = [1, 2, 3, 2, 4, 3, 5, 6, 5]
new_list = []
for item in my_list:
if item not in new_list:
new_list.append(item)
print(new_list)
输出:
[1, 2, 3, 4, 5, 6]
通过循环遍历原列表,将不重复的元素添加到新列表中。
方法三:使用列表推导式
my_list = [1, 2, 3, 2, 4, 3, 5, 6, 5]
new_list = list(dict.fromkeys(my_list))
print(new_list)
输出:
[1, 2, 3, 4, 5, 6]
利用字典的键唯一性,将列表转换为字典,再将字典的键转换回列表。
以上三种方法都可以实现在Python列表中删除相似或重复的值,并且只保留一次。根据具体的场景和需求,选择合适的方法即可。
推荐的腾讯云相关产品:腾讯云函数(云原生产品)
领取专属 10元无门槛券
手把手带您无忧上云