代码点读机 / Python / readlines

readlines Python · 文件方法

把文件每一行作为一个元素,装进列表。

怎么用

文件.readlines()

小例子

with open('a.txt', 'w', encoding='utf-8') as f:
    f.write('a\nb\n')
with open('a.txt', 'r', encoding='utf-8') as f:
    print(f.readlines())

运行结果

['a\n', 'b\n']

提醒:末尾通常保留换行符。

官方文档:https://docs.python.org/zh-cn/3/library/io.html#io.TextIOBase

在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条