又出现循环问题

发布于 2025-01-16 13:59:12 字数 294 浏览 0 评论 0原文

我刚刚编写了一堆简单的代码,必须删除列表中的重复项,但有一个问题。 有人可以解释一下为什么它会跳过数字 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

原来是傀儡 2025-01-23 13:59:12

只需将您的列表转换为集合,然后再转换回列表即可:

listofthings = [1, 1, 3, 4, 5, 5, 5, 6, 1, 1, 3, 6, 6, 6, 1, 4, 7, 6, 5]

newlist=list(set(listofthings))

print(newlist)

Just take your list, convert it to a set and then back to a list:

listofthings = [1, 1, 3, 4, 5, 5, 5, 6, 1, 1, 3, 6, 6, 6, 1, 4, 7, 6, 5]

newlist=list(set(listofthings))

print(newlist)
蓝天 2025-01-23 13:59:12

如果您不想删除所有 3 或所有 1,请不要使用 list.remove()

listofthings = [1, 1, 3, 4, 5, 5, 5, 6, 1, 1, 3, 6, 6, 6, 1, 4, 7, 6, 5]


for things in listofthings:
    exists = 1
    obj = things
    cnt = 0
    for things in listofthings:
       cnt = cnt + 1
       dup = things
       if dup == obj:
          exists = exists + 1 
       if exists == 2:
           del listofthings[cnt]   
         

dont use list.remove() if u dont want to remove all 3s or all 1s

listofthings = [1, 1, 3, 4, 5, 5, 5, 6, 1, 1, 3, 6, 6, 6, 1, 4, 7, 6, 5]


for things in listofthings:
    exists = 1
    obj = things
    cnt = 0
    for things in listofthings:
       cnt = cnt + 1
       dup = things
       if dup == obj:
          exists = exists + 1 
       if exists == 2:
           del listofthings[cnt]   
         
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文