python怎么统计txt文件的字数
程序员文章站
2022-04-02 13:10:46
...
Python中要统计txt文件字数可以rstrip函数和len函数进行。
如下统计白夜行.txt的字数:
file_name = '白夜行.txt' try: with open(file_name, encoding='utf8') as file_obj: #由于书名不是英文,要加上 encoding='utf8' contents = file_obj.read() except FileNotFoundError: msg = 'Sorry, the file' + file_name + ' does not exist.' print(msg) else: words = contents.rstrip() num_words = len(words) print('The file ' + file_name + ' has about ' + str(num_words) + ' words.')
结果:
The file 白夜行.txt has about 487761 words.
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是python怎么统计txt文件的字数的详细内容,更多请关注其它相关文章!
推荐阅读
-
Python实现对excel文件列表值进行统计的方法
-
Python读写txt文本文件的操作方法全解析
-
Python依赖文件requirements.txt的生成和安装
-
Java实现读取键盘输入保存到txt文件,再统计并输出每个单词出现次数的方法
-
python生成以及打开json、csv和txt文件的实例
-
Python实现将目录中TXT合并成一个大TXT文件的方法
-
Python读取txt文件数据的方法(用于接口自动化参数化数据)
-
python 读取dicom文件,生成info.txt和raw文件的方法
-
python保存二维数组到txt文件中的方法
-
Python统计字符出现次数(Counter包)以及txt文件写入