Python:计算列表中重复的元素[重复]

Python:计算列表中重复的元素[重复],第1张

Python:计算列表中重复元素[重复]

您可以使用

count

my_dict = {i:MyList.count(i) for i in MyList}>>> print my_dict     #or print(my_dict) in python-3.x{'a': 3, 'c': 3, 'b': 1}

使用

collections.Counter



from collections import Countera = dict(Counter(MyList))>>> print a#or print(a) in python-3.x{'a': 3, 'c': 3, 'b': 1}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5640085.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存