首页 > 代码库 > python 统计一个文件的行数、单词数、字符数

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

#!/usr/bin/env pythondef wordCount(s):    chars = len(s)    words = len(s.split())    lines = s.count(\n)    print lines, words, charss = open(/etc/passwd).read()wordCount(s)

 

 

 

 

 

    

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