美文网首页
统计英文文章中词频

统计英文文章中词频

作者: lilyindreaming | 来源:发表于2018-04-24 09:42 被阅读0次

    import re

    from collections import Counter

    path='E:\etest.txt'

    with open(path,'r') as f:

        s=f.read()

        data=re.split(r'\W+',s)

        fdata=Counter(data)

        for i,j in fdata.most_common():

            print(i,':',j)

    相关文章

      网友评论

          本文标题:统计英文文章中词频

          本文链接:https://www.haomeiwen.com/subject/eaydlftx.html