python 统计一个文件的行数单词数字符数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 统计一个文件的行数单词数字符数相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python

def wordCount(s):
    chars = len(s)
    words = len(s.split())
    lines = s.count(\n)
    print lines, words, chars

s = open(/etc/passwd).read()
wordCount(s)

 

 

 

 

 

    

以上是关于python 统计一个文件的行数单词数字符数的主要内容,如果未能解决你的问题,请参考以下文章

统计行数字符数与单词数

WordCount 统计行数字符数单词数

Python实现代码行数统计工具

python 代码统计文件的行数

统计python文件中的代码,注释,空白对应的行数

统计输入的行数,单词数和字符数