补充课堂练习7(2024.10.28-第11周) 1、题目:设列表北=[1,2,3,4,5,2,1,3,4,57,8,8,9), 刪除列表中重复的元素 要求:使用while循环。
时间: 2024-11-04 12:14:25 浏览: 1
补充课堂练习7的目的是让你熟悉Python中列表去重的方法,并通过while循环实现这一功能。这里是一个简单的示例来完成这个任务:
```python
def remove_duplicates(lst):
temp_list = [] # 创建一个新的空列表用于存放去重后的元素
index = 0 # 初始化索引
while index < len(lst): # 遍历输入列表
if lst[index] not in temp_list: # 如果当前元素不在临时列表中
temp_list.append(lst[index]) # 添加到临时列表
index += 1 # 移动索引到下一个元素
return temp_list # 返回去重后的列表
# 示例数据
list_b = [1, 2, 3, 4, 5, 2, 1, 3, 4, 57, 8, 8, 9]
unique_list = remove_duplicates(list_b)
print("去重后的列表:", unique_list)
#
阅读全文