Python 文件 readlines() 方法
定义和用法
The readlines()
方法返回一个列表,其中包含文件中每行作为列表项。
使用提示参数来限制返回的行数。如果返回的字节总数超过指定的数字,则不再返回任何行。
语法
file.readlines(hint)
参数值
参数 | 描述 |
---|---|
hint | 可选。如果返回的字节总数超过提示数字,则不再返回任何行。默认值为 -1,表示将返回所有行。 |
The readlines()
方法返回一个列表,其中包含文件中每行作为列表项。
使用提示参数来限制返回的行数。如果返回的字节总数超过指定的数字,则不再返回任何行。
file.readlines(hint)
参数 | 描述 |
---|---|
hint | 可选。如果返回的字节总数超过提示数字,则不再返回任何行。默认值为 -1,表示将返回所有行。 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]