Python3查找列表中重复元素的个数的3种方法详解
作者:猪笨是念来过倒 时间:2022-08-01 16:36:07
方法一:
mylist = [1,2,2,2,2,3,3,3,4,4,4,4]
myset = set(mylist)
for item in myset:
print("the %d has found %d" %(item,mylist.count(item)))
the 1 has found 1
the 2 has found 4
the 3 has found 3
the 4 has found 4
方法二:
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})
方法三:
List=[1,2,2,2,2,3,3,3,4,4,4,4]
a = {}
for i in List:
if List.count(i)>1:
a[i] = List.count(i)
来源:https://blog.csdn.net/liao392781/article/details/87257097
标签:Python,列表,重复
0
投稿
猜你喜欢
python 实现在txt指定行追加文本的方法
2021-09-08 22:14:40
opencv resize图片为正方形尺寸的实现方法
2023-02-21 15:34:51
css可以给img元素设置背景图
2008-09-29 15:35:00
python机器学习实现决策树
2021-04-21 07:44:34
设置iframe的document.designMode后仅Firefox中其body.innerHTML为br
2024-05-02 16:17:31
mysql使用mysqld_multi部署单机多实例的方法教程
2024-01-15 12:26:01
Python中的单继承与多继承实例分析
2022-07-03 13:48:06
python SSH模块登录,远程机执行shell命令实例解析
2022-07-24 21:09:22
谈谈如何手动释放Python的内存
2023-09-22 13:03:57
Python3多进程 multiprocessing 模块实例详解
2022-05-27 11:11:51
python 请求服务器的实现代码(http请求和https请求)
2023-07-10 08:23:58
如何使用共享连接减少空闲的连接数?
2010-05-16 15:15:00
php进程daemon化的正确实现方法
2023-10-01 09:14:09
Vuex中actions的使用教程详解
2024-04-30 08:45:29
PHP _construct()函数讲解
2023-06-14 16:56:43
python中实现延时回调普通函数示例代码
2023-10-03 02:17:04
PHP小白必须要知道的php基础知识(超实用)
2024-05-13 09:56:42
python统计RGB图片某像素的个数案例
2021-09-30 11:25:56
Python连接Hadoop数据中遇到的各种坑(汇总)
2023-09-13 20:16:34
asp无限级分类
2007-09-16 18:06:00