[Python Tips]如何找出Python list中有重复的项

如果一个Python list中有很多重复的项,如何有效地找到多少重复的项呢?

可以使用collection的Counter方法。。

from collections import Counter
Counter([11,22,11,44,22,33])
Counter({11: 2, 22: 2, 33: 1, 44: 1})
    原文作者:bluescorpio
    原文地址: https://www.jianshu.com/p/8b88186f0676
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞