一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

腳本之家,腳本語言編程技術及教程分享平臺!
分類導航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服務器之家 - 腳本之家 - Python - python統計一個文本中重復行數的方法

python統計一個文本中重復行數的方法

2020-05-13 10:09腳本之家 Python

這篇文章主要介紹了python統計一個文本中重復行數的方法,涉及針對Python中dict對象的使用及相關本文的操作,具有一定的借鑒價值,需要的朋友可以參考下

本文實例講述了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, "first": 1, "fourth": 4, "second": 2}
>>> for k, v in d.items():
...     print "%s: %s" % (k, v)
...
second: 2
fourth: 4
third: 3
first: 1
>>> d
{'second': 2, 'fourth': 4, 'third': 3, 'first': 1}To make a new ordered dictionary from the original, sorting by the values:
>>> from collections import OrderedDict
>>> d_sorted_by_value = OrderedDict(sorted(d.items(), key=lambda x: x[1]))The OrderedDict behaves like a normal dict:
>>> for k, v in d_sorted_by_value.items():
...     print "%s: %s" % (k, v)
...
first: 1
second: 2
third: 3
fourth: 4
>>> d_sorted_by_value
OrderedDict([('first': 1), ('second': 2), ('third': 3), ('fourth': 4)])


代碼如下:

復制代碼 代碼如下:
#coding=utf-8
import operator
f = open("f.txt")
count_dict = {}
for line in f.readlines():
    line = line.strip()
    count = count_dict.setdefault(line, 0)
    count += 1
    count_dict[line] = count
sorted_count_dict = sorted(count_dict.iteritems(), key=operator.itemgetter(1), reverse=True)
for item in sorted_count_dict:
    print "%s,%d" % (item[0], item[1])

 

補充說明:
1. python的dict對象的兩個方法:

items方法將所有的字典項以列表的方式返回, 這些列表項中每一項都來自于(鍵, 值)
iteritems方法與items的作用大致相同, 但是返回一個迭代器對象而不是列表

2. python的內建函數sorted

復制代碼 代碼如下:
>>> help(sorted)
Help on built-in function sorted in module __builtin__:
sorted(...)
    sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list

 

希望本文所述對大家的Python程序設計有所幫助。

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: chinese帅男gay野外性 | 精品欧美一区二区三区四区 | 强漂亮白丝女教师小说 | 国产小视频网站 | 爸爸干女儿小说 | 91久色 | 春宵福利网站在线观看 | 经典千人斩一区二区视频 | 人妖欧美一区二区三区四区 | 国产精品原创巨作无遮挡 | 午夜视频在线网站 | 亚洲AV无码国产精品午夜久久 | 欧美一级特黄刺激大片视频 | 色综合久久综合网欧美综合网 | 好爽好深好猛好舒服视频上 | 欧美va在线观看 | 办公室里被迫高h | 美女扒开屁股让男人进去 | 国产成+人+综合+亚洲欧美丁香花 | 日本中文字幕一区二区三区不卡 | 精品国产福利一区二区在线 | 日本中文字幕一区二区高清在线 | 亚洲国产欧美在线人网站 | 国产成人免费片在线视频观看 | 91精品综合久久久久m3u8 | 无码国产成人午夜在线观看不卡 | 色网在线观看 | 啪啪大幂幂被c | 久久福利影院 | 久久国产综合精品欧美 | 亚洲精品成人A8198A片漫画 | 日日操天天射 | 亚洲精品AV无码喷奶水糖心 | 99热99在线 | 色老板影视 | 91.prom在线观看国产 | 日一日操一操 | 亚洲系列国产精品制服丝袜第 | 色偷偷影院 | 国产成人免费a在线资源 | 欧美日韩精品免费一区二区三区 |