摘要: #!/usr/bin/env python import osimport sys def read_file(fpath): Block_Size = 1024 with open(fpath,"r") as f: while True: block = f.read(Block_Size) if 阅读全文
posted @ 2017-07-01 23:44 chengd 阅读(3319) 评论(0) 推荐(1)