用python本关任务:编写程序,实现删除一个列表里面的重复元素程序实现时,对输入的数据进行遍历,遍历过程中可以把数据加入一个新的列表,如果该数据项已经在列表中,则不添加。
时间: 2024-04-29 12:23:01 浏览: 49
python删除列表重复元素
```python
def remove_duplicates(lst):
new_lst = []
for item in lst:
if item not in new_lst:
new_lst.append(item)
return new_lst
# 测试代码
lst = [1, 2, 3, 2, 4, 1, 5]
print(remove_duplicates(lst)) # [1, 2, 3, 4, 5]
```
阅读全文