python去除列表中的重复数据
时间: 2023-05-11 07:01:47 浏览: 109
可以使用set()函数来去除列表中的重复数据,代码如下:
```python
my_list = [1, 2, 2, 3, 4, 4, 5]
new_list = list(set(my_list))
print(new_list)
```
输出结果为:[1, 2, 3, 4, 5]
相关问题
python去除list中重复的数据
可以使用set()函数将list转换为集合,然后再将集合转换为list,这样就可以去除list中重复的数据。具体代码如下:
```python
list1 = [1, 2, 3, 2, 4, 1, 5]
list2 = list(set(list1))
print(list2)
```
输出结果为:
```
[1, 2, 3, 4, 5]
```
python对比去除excel重复数据
Python可以使用pandas库来处理Excel文件,并且可以很方便地去除重复数据。可以按照以下步骤进行操作:
1. 首先,导入pandas库并读取Excel文件。
2. 使用drop_duplicates()函数来去除重复数据。设置subset参数来指定要判断重复的列。
3. 最后,保存修改后的Excel文件。
阅读全文