Python File readline() 方法
Python 文件对象的 readline() 方法用于从文件读取整行,包括 "\n" 字符
如果指定了一个非负数的参数,则返回指定大小的字节数,包括 "\n" 字符
语法
fileObject.readline();
参数
参数 | 说明 |
---|---|
size | 从文件中读取的字节数 |
返回值
返回从字符串中读取的字节
范例
假设当前目录下存在文件 demo.txt
内容如下
www.twle.cn www.twle.cn www.twle.cn www.twle.cn www.twle.cn
下面的范例使用 readline() 从文件 demo.txt 中读取内容
#!/usr/bin/python # 打开文件 fp = open("demo.txt", "rw+") print ( "文件名为: ", fp.name ) line = fp.readline() print ( "读取第一行 %s" % (line) ) line = fp.readline(5) print ( "读取的字符串为: %s" % (line) ) # 关闭文件 fp.close()
运行以上 Python 范例,输出结果如下
文件名为: demo.txt 读取第一行 www.twle.cn 读取的字符串为: www.t