python怎麼統計txt檔的字數

發布: 2019-07-06 10:28:56
原創
7874 人瀏覽過

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相關技術文章,請造訪Python教學欄位進行學習!

以上是python怎麼統計txt檔的字數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!