Loop problem while iterating through a list and removing recurring elements(遍历列表并删除重复元素时出现循环问题)
本文介绍了遍历列表并删除重复元素时出现循环问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想遍历一个列表,并删除多次计数的项目,这样它们就不会被 for 循环重复打印.
I want to iterate through a list, and remove the items that count more than once, so they don't get printed repeatedly by the for loop.
但是,列表中仅出现一次的某些项目似乎也受此影响,我不知道为什么.
However, some items appearing only one time in the list seem to get affected too by this, and I can't figure out why.
任何意见将不胜感激.
示例输出:
listy = [2,2,1,3,4,2,1,2,3,4,5]
for i in listy:
if listy.count(i)>1:
print i, listy.count(i)
while i in listy: listy.remove(i)
else:
print i, listy.count(i)
输出:
2 4
3 2
1 2
因此完全忽略了 4 和 5.
thus ignoring completely 4 and 5.
推荐答案
您不应该在迭代列表时修改它.这个应该可以工作:
You should not modify a list while iterating over it. This one should work:
listy = [2,2,1,3,4,2,1,2,3,4,5]
found = set()
for i in listy:
if not i in found:
print i, listy.count(i)
found.add(i)
结果是:
2 4
1 2
3 2
4 2
5 1
这篇关于遍历列表并删除重复元素时出现循环问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:遍历列表并删除重复元素时出现循环问题


基础教程推荐
猜你喜欢
- 修改列表中的数据帧不起作用 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 包装空间模型 2022-01-01
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01