python中怎么统计文章单词个数-创新互联

让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名与空间、网页空间、营销软件、网站建设、同仁网站维护、网站推广。

这篇文章给大家介绍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.py
Counter({'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 = 0		
			chars_count = 0		
			words_dict = {} 
		
			lines_list = [] 
		
			c1 = ['!', '?', ';', '.', ','] 
		
			all_line = '' 
		import collections		
			with 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 中怎么统计文章单词个数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


网页标题:python中怎么统计文章单词个数-创新互联
URL链接:http://csdahua.cn/article/cssped.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流