标签:获取 readline pytho print bsp while logs open line
1.循环文件 获取指针
with open("file") as f: while True: line = f.readline() if not line: break print(f.tell())
文件操作
原文地址:http://www.cnblogs.com/oyoui/p/7744846.html