日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

python3 一個處理數據的案例

系統 1781 0

讀取文件,將每一行作為列表的一個值,求每個字符串出現的次數,以及有哪些字符串。
寫入文件,按次數大小排序,次數后面對應著字符串

            
              
# -*- coding:utf-8 -*-

input1 = open('jpc.txt', 'r')
output1 = open('out.txt', 'w')
list_of_all_the_lines = input1.read()
a = list_of_all_the_lines.splitlines(False)

myset = set(a)
mylist_cnt = []
mylist_name = []
for item in myset:
    mylist_cnt.append(a.count(item))
    mylist_name.append(item)

for i in range(len(mylist_cnt)-1, 1, -1):
    for j in range(0, i):
        if mylist_cnt[j] < mylist_cnt[j+1]:
            mylist_cnt[j], mylist_cnt[j+1] = mylist_cnt[j+1], mylist_cnt[j]
            mylist_name[j], mylist_name[j+1] = mylist_name[j+1], mylist_name[j]

for res in range(len(mylist_cnt)):
    # print("%s\t\t%s" % (mylist_cnt[res], mylist_name[res]))
    s = str(mylist_cnt[res])
    s += "\t\t"
    s += str(mylist_name[res])
    s += "\r\n"
    output1.write(s)

input1.close()
output1.close()


            
          

更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 恩平市| 乐至县| 怀化市| 大悟县| 三江| 平武县| 东乡| 泾川县| 许昌市| 开原市| 子洲县| 项城市| 峨边| 麻城市| 安龙县| 建昌县| 资兴市| 尖扎县| 崇义县| 古丈县| 仁寿县| 定州市| 全椒县| 虞城县| 茂名市| 进贤县| 湘潭市| 涟源市| 磐安县| 丹阳市| 潮安县| 朝阳市| 门头沟区| 运城市| 同德县| 金乡县| 镇江市| 米林县| 东莞市| 秀山| 泰宁县|