Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to count the number of words in articles by python

2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "python how to count the number of words in the article". In the daily operation, I believe many people have doubts about how to count the words in the python. The editor consulted all kinds of data and sorted out a simple and easy-to-use method of operation. I hope it will be helpful to answer the doubts about "how to count the words in the article by python". Next, please follow the editor to study!

Lines_count = 0words_count = 0chars_count = 0words_dict = {} lines_list = [] C1 = ['!','?' ','.','] all_line=''import collectionswith open (' c:\ invalid.txt',') 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 (') for i in str1: if i not in words_dict: words_ [I] = 1 else: words_ [I] = words_ for [I] + 1 for k, v in words_dict.items (): print k, v so far The study on "how to count the words of the article by python" is over. I hope to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report