python 中怎么统计文章单词个数
短信预约 -IT技能 免费直播动态提醒
这篇文章给大家介绍python 中怎么统计文章单词个数,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
文件模版:
There are moments in life when you miss someone so much that you just want to pick them from your dreams and hug them for real!Dream what you want to dream;go where you want to go;be what you want to be,because you have only one life and one chance to do all the things you want to do.
运行结果:
C:\ProgramData\Anaconda2\python.exe C:/Users/xuyuch/PycharmProjects/untitled1/test1/word.pyCounter({'you': 7, 'to': 6, 'want': 5, 'and': 2, 'do': 2, 'them': 2, 'one': 2, 'go': 2, 'what': 2, 'be': 2, 'life': 2, 'dream': 2, '': 1, 'all': 1, 'because': 1, 'have': 1, 'just': 1, 'moments': 1, 'hug': 1, 'are': 1, 'in': 1, 'miss': 1, 'your': 1, 'from': 1, 'for': 1, 'things': 1, 'there': 1, 'when': 1, 'only': 1, 'much': 1, 'real': 1, 'someone': 1, 'that': 1, 'chance': 1, 'dreams': 1, 'where': 1, 'so': 1, 'pick': 1, 'the': 1})Process finished with exit code 0
lines_count = 0 words_count = 0chars_count = 0words_dict = {} lines_list = [] c1 = ['!', '?', ';', '.', ','] all_line = '' import collectionswith open('c:\invalid.txt', 'r') as f: for line in f: line = line.strip('\n') lines_count = lines_count + 1 all_line=all_line+line.lower() # print line #print all_line for i in c1: all_line=all_line.replace(i,' ') #print all_line str1=all_line.split(' ') cnt=collections.Counter(str1) #print str1 print cnt
关于python 中怎么统计文章单词个数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341