我是靠谱客的博主 失眠皮皮虾,最近开发中收集的这篇文章主要介绍python怎么统计txt文件的字数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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怎么统计txt文件的字数的全部内容,希望文章能够帮你解决python怎么统计txt文件的字数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(91)

评论列表共有 0 条评论

立即
投稿
返回
顶部