读取文件 open() 函数
用于打开一个文件,返回一个 file 对象,之后用相关的方法进行读写。
open(name[, mode[, buffering]])
mode
'r' #open for reading (default) 文件指针会在文件开头。默认模式
'w' #open for writing, truncating the file first,只用于写入。如文件已存在,write 会覆盖全部文件,类似 linux 的 echo > filename,若文件不存在,创建文件。
'x' #create a new file and open it for writing
'a' #open for writing, appending to the end of the file if it exists
'b' #binary mode,二进制模式
't' #text mode (default)
'+' #open a disk file for updating (reading and writing)
'U' #universal newline mode (deprecated)
'ab' #以二进制格式打开一个文件用于追加写入。```
网友评论