python统计一个文本中重复行数的方法
本文实例讲述了python统计一个文本中重复行数的方法。分享给大家供大家参考。具体实现方法如下: 比如有下面一个文件 2 3 1 2 我们期望得到 2,2 3,1 1,1 解决问题的思路: 出现的文本作为key, 出现的数目作为value,然后按照value排除后输出 最好按照value从大到小输出出来,可以参照: 复制代码 代码如下:in recent Python 2.7, we have new OrderedDict type, which remembers the order in which the items were added. >>> d = {“third”: 3, “
用户评论