温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

python 中怎么统计文章单词个数

发布时间:2021-07-10 16:59:35 来源:亿速云 阅读:203 作者:Leah 栏目:编程语言

这篇文章给大家介绍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 中怎么统计文章单词个数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI