标签:
打开文件的模式有:
"+" 表示可以同时读写某个文件
"U"表示在读取时,可以将 \r \n \r\n自动转换成 \n (与 r 或 r+ 模式同使用)
"b"表示处理二进制文件(如:FTP发送上传ISO镜像文件,linux可忽略,windows处理二进制文件时需标注)
其他内置方法
def readline(self):
#一行行读文件
def readlines(self:
#读取所有行数
def write(self, *args, **kwargs): # real signature unknown
"""
Write bytes b to file, return number written.
Only makes one system call, so not all of the data may be written.
The number of bytes actually written is returned. In non-blocking mode,
returns None if the write would block.
"""
pass
三、with
为了避免打开文件后忘记
方式,当with代码块执行完毕时,内部会自动关闭并释放文件资源。
在Python 2.7 后,with又支持同时对多个文件的上下文进行管理,即:
1
2
|
with open ( ‘log1‘ ) as obj1, open ( ‘log2‘ ) as obj2: pass |
标签:
原文地址:http://www.cnblogs.com/edwincaiji/p/5929823.html