Python代码除去重复元素
时间: 2023-05-23 20:01:44 浏览: 79
可以使用 set() 函数来除去 Python 列表中的重复元素,示例代码如下:
```
my_list = [1, 2, 2, 3, 4, 4, 5]
my_set = set(my_list)
my_new_list = list(my_set)
print(my_new_list) # Output: [1, 2, 3, 4, 5]
```
上面的代码首先将列表转换为了 set 集合,因为集合只包含唯一的元素,所以会自动去重。然后再将 set 集合转换为列表,得到去重后的列表。
阅读全文