python中readlines读取指定行_计算机二级python语言中readlines()参数读取行数问题详细分析…

  • Post author:
  • Post category:python


在计算机二级python中介绍的 f.readlines(hint = -1)

含义为:从文件中读入所有行,以每行为元素形成一个列表。参数可选,如果给出,读入hint行。说法是不准确的

关于hint的参数存在一些问题,例如代码:hint的参数存在一些问题,例如代码:

f = open(“a.txt”,”r”)

a = f.readlines(2)

print(a)

f.close()

其中a.txt文本的内容为如下:

12345

67890

abcdefghjkomn

打印输出的结果为:

>>>[‘12345\n’]

并不是打印输出了a.txt文本中的两行内容。

这里的存在的 问题就在于参数hint并不是直接指示所对应的行数。

Python官方文档给出的内容解释为:

readlines(hint=-1, /) method of _io.TextIOWrapper instance Return a list of lines from the stream.

hint can be specified to control the number of lines read: no more lines will be read if the total size (in bytes/characters) of all lines so far exceeds hin