又出现循环问题
我刚刚编写了一堆简单的代码,必须删除列表中的重复项,但有一个问题。 有人可以解释一下为什么它会跳过数字 3 吗?
lis = [1, 1, 3, 4, 5, 5, 5, 6, 1, 1, 3, 6, 6, 6, 1, 4, 7, 6, 5]
for i in lis:
while lis.count(i) > 1:
print(f'removing {i} ... ')
lis.remove(i)
print(lis.count(i))
print(lis)
I just wrote a simple bunch of code, which had to remove duplicates in list, but there was an issue.
Can somebody explain me why it is skipping number 3 ?
lis = [1, 1, 3, 4, 5, 5, 5, 6, 1, 1, 3, 6, 6, 6, 1, 4, 7, 6, 5]
for i in lis:
while lis.count(i) > 1:
print(f'removing {i} ... ')
lis.remove(i)
print(lis.count(i))
print(lis)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将您的列表转换为集合,然后再转换回列表即可:
Just take your list, convert it to a set and then back to a list:
如果您不想删除所有 3 或所有 1,请不要使用 list.remove()
dont use list.remove() if u dont want to remove all 3s or all 1s