📜  python读取行 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:55.736000             🧑  作者: Mango

代码示例6
filepath = 'Iliad.txt'
with open(filepath) as fp:
   line = fp.readline()
   cnt = 1
   while line:
       print("Line {}: {}".format(cnt, line.strip()))
       line = fp.readline()
       cnt += 1