__author__ = 'Administrator' import codecs def blocks(file, size=65536): while True: b = file.read(size) if not b: break yield b with codecs. open('h:/iis/u_ex141026.log', 'r','gbk', 'ignore') as f: print( sum(bl.count(" ") for bl in blocks(f)))
Python真短啊