Python File read() 方法
Python 文件对象的 read() 方法用于从文件读取指定的字节数
如果未给定或为负则读取所有
语法
fileObject.read();
参数
参数 | 说明 |
---|---|
size | 从文件中读取的字节数 |
返回值
返回从字符串中读取的字节
范例
假设当前目录下存在文件 demo.txt
内容如下
www.twle.cn www.twle.cn www.twle.cn www.twle.cn www.twle.cn
下面的代码使用 read() 方法从文件 demo.txt 中读取内容
#!/usr/bin/python # 打开文件 fp = open("demo.txt", "rw+") print ( "文件名为: ", fp.name ) line = fp.read(10) print ( "读取的字符串: %s" % (line) ) # 关闭文件 fp.close()
运行以上 Python 代码,输出结果如下
文件名为: demo.txt 读取的字符串: www.twle.c