我尝试使用 python 读取一个大文件,但似乎 python 只处理大约 2507000 行然后停止。你能建议为什么吗?
我在 Windows 上使用 Python 2.7 32 位。我还发布了我正在使用的代码。谢谢。
counter = 0
with open(input) as file:
for line in file:
counter += 1
if counter % 1000 == 0:
sys.stderr.write(str(counter) + "lines processed.\n")