编程语言
首页 > 编程语言> > 「python小技巧」还在手写计数?试试python的counter类吧

「python小技巧」还在手写计数?试试python的counter类吧

作者:互联网


今天在开发是遇见一个很有意思的问题,如何在一个列表中统计出现元素的次数。

此类场景经常出现在数据统计,对语料处理也经常用到

问题:如何统计序列中元素的次数

words = ['Beautiful', 'is', 'better', 'than', 'ugly', 'Explicit', 'is', 'better', 'than', 'implicit', 'Simple', 'is', 'better', 'than', 'complex', 'Complex', 'is', 'better', 'than', 'complicated', 'Flat', 'is', 'better', 'than', 'nested', 'Sparse', 'is', 'better', 'than', 'dense']

总结

1. 当面对任何数据制表或者计数是使用counter会比手写字典计数算法更有效率

“世界就像是个巨大的马戏团,它让你兴奋,却让我惶恐,因为我知道散场后永远是有限温存,无限心酸。”——Charlie Chaplin

在这里插入图片描述

标签:Counter,word,python,counter,better,ugly,counts,手写,than
来源: https://blog.csdn.net/JOHNEW/article/details/104916564