gpt4 book ai didi

Python readlines()函数:读取所有行的文本

转载 作者:Q123 更新时间:2023-12-19 22:17:12 25 4
gpt4 key购买 nike

Python readlines()函数:读取所有行的文本

readlines() 函数将文件的每行作为一个元素,组合成一个列表返回。

参数 hint 用来限制读入的行数。如果参数 hint 为负数或者 0,表示没有行数的限制。hint 的默认值是 -1,即默认情况下是不对读入的行数进行限制的,返回的是文件的所有行。

下面的例子演示了没有指定 hint 值而使用默认值 -1 的情况,其会读出所有的行,并且将这些行组成一个列表返回。

>>> fd = open("in.dat", "r")   # 以只读方式打开文件in.dat
>>> lines = fd.readlines()     # 将所有的行读出
>>> lines                      # 显示返回值,是一个列表,每个元素表示一行
['this is input text filen', 'it contains 3 linesn', 'this is the end
        of filen']
>>> fd.close()                 # 关闭文件

如果 hint 为正数,则会依次读入各行,并检查读入的字符数是否大于 hint。如果大于或等于 hint,则停止继续读入下一行;如果小于 hint 则继续读入下一行。下面的例子演示了 hint 比实际文件字节数小的情况。

>>> fd = open("in.dat", "r")   # 以只读方式打开文件in.dat
>>> lines = fd.readlines(3)    # 如果读入字符数超过3,就停止读入下一行
>>> lines                      # 所以只读入了一行便停止了
['this is input text filen']
>>> lines = fd.readlines(30)   # 如果读入超过了30个字符,就停止读入下一行
>>> lines                      # 第二行字符串小于30,所以继续读入第三行
['it contains 3 linesn', 'this is the end of filen']
>>> fd.close()                 # 关闭文件

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com