Python笔记(二)查找重复元素

一、查找数列重复元素---count()

复制代码
>>> list = [1,2,2,2,2,3,3,3,4,4,4,4]

>>> set = set(list)

>>> for item in set:

         print("the %d has found %d" %(item,list.count(item)))

#输出
#the 1 has found 1
#the 2 has found 4
#the 3 has found 3
#the 4 has found 4
复制代码

 

二、查找重复元素,使用 Counter

>>> from collections import Counter

>>> Counter([1,2,2,2,2,3,3,3,4,4,4,4])

#输出 #Counter({
2: 4, 4: 4, 3: 3, 1: 1})

 


 

参考自:

   [1]  作者:范恒

         https://www.cnblogs.com/AaronFan/p/6084175.html

 

posted @   抽象Java  阅读(512)  评论(0编辑  收藏  举报
编辑推荐:
· ASP.NET Core - 日志记录系统(二)
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
阅读排行:
· 终于决定:把自己家的能源管理系统开源了!
· C#实现 Winform 程序在系统托盘显示图标 & 开机自启动
· 了解 ASP.NET Core 中的中间件
· 实现windows下简单的自动化窗口管理
· 【C语言学习】——命令行编译运行 C 语言程序的完整流程
点击右上角即可分享
微信分享提示