在Python中删除重复项可以使用多种方法,以下是几种常见的方法:
lst = [1, 2, 3, 3, 4, 5, 5]
lst = list(set(lst))
print(lst)
推荐的腾讯云相关产品:腾讯云云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
lst = [1, 2, 3, 3, 4, 5, 5]
lst = [x for i, x in enumerate(lst) if x not in lst[:i]]
print(lst)
推荐的腾讯云相关产品:腾讯云函数(SCF),产品介绍链接地址:https://cloud.tencent.com/product/scf
lst = [1, 2, 3, 3, 4, 5, 5]
lst = list(dict.fromkeys(lst))
print(lst)
推荐的腾讯云相关产品:腾讯云数据库 MySQL 版(TencentDB for MySQL),产品介绍链接地址:https://cloud.tencent.com/product/cdb_mysql
lst = [1, 2, 3, 3, 4, 5, 5]
lst = [x for x in lst if lst.count(x) == 1]
print(lst)
推荐的腾讯云相关产品:腾讯云对象存储(COS),产品介绍链接地址:https://cloud.tencent.com/product/cos
以上是几种常见的方法,根据具体的需求和场景选择适合的方法进行去重操作。
领取专属 10元无门槛券
手把手带您无忧上云