最佳答案
为了读取一些文本文件,在 C 或 Pascal 中,我总是使用以下代码片段来读取数据,直到 EOF:
while not eof do begin
readline(a);
do_something;
end;
因此,我想知道如何在 Python 中简单快速地完成这项工作?