怎么删除列表中相同的值
时间: 2024-05-05 19:17:52 浏览: 33
Python简单删除列表中相同元素的方法示例
可以使用Python内置函数set()和列表推导式来实现删除列表中相同的值,具体代码如下:
```
my_list = [1, 2, 2, 3, 4, 4, 5]
new_list = list(set(my_list))
print(new_list)
```
输出结果为:[1, 2, 3, 4, 5]
阅读全文
Python简单删除列表中相同元素的方法示例