
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.')结果:
云优YUNUCMS企业网站管理系统三网合一,跨平台兼容,让企业快速、高效的展示在广大客户面前,为企业带来更多潜在客户,提升企业曝光率和品牌影响力。 云优YUNUCMS企业网站管理系统 1.1.2 更新日志:2018-08-02 [新增]表单邮件提醒增加携带变量; [新增]htm和txt格式站点地图文件,每次登录后台自动生成; [新增]数据统计主菜单; [新增]集成平台主词排名监控;
829
The file 白夜行.txt has about 487761 words.
更多Python相关技术文章,请访问Python教程栏目进行学习!
立即学习“Python免费学习笔记(深入)”;
以上就是python怎么统计txt文件的字数的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号