start = time.time() count = 0 with open(file_name, 'rb') as f : while True: lines = f.readlines(1024*8192) if not lines: break count += ...
確定! 回上一頁