美文网首页
python open 读取文件

python open 读取文件

作者: 松山剑客 | 来源:发表于2018-07-05 17:56 被阅读5次

    读取文件 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'      #以二进制格式打开一个文件用于追加写入。```

    相关文章

      网友评论

          本文标题:python open 读取文件

          本文链接:https://www.haomeiwen.com/subject/uiapuftx.html