【问题标题】:What is the perfect counterpart in Python for "while not EOF"Python中“虽然不是EOF”的完美对应物是什么
【发布时间】:2023-04-07 23:41:01
【问题描述】:

要读取一些文本文件,在 C 或 Pascal 中,我总是使用以下 sn-ps 来读取数据,直到 EOF:

while not eof do begin
  readline(a);
  do_something;
end;

因此,我想知道如何在 Python 中简单快速地做到这一点?

【问题讨论】:

    标签:
    python
    file
    iteration
    eof