设为首页 收藏本站
查看: 844|回复: 0

[经验分享] Python3中的open函数

[复制链接]

尚未签到

发表于 2018-8-10 07:01:18 | 显示全部楼层 |阅读模式
  open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
      Open file and return a stream.  Raise IOError upon failure.
  #打开文件并返回一个流?失败则抛出IOError异常
  mode:
      ========= ===============================================================
      Character Meaning
      --------- ---------------------------------------------------------------
      'r'       open for reading (default)
      'w'       open for writing, truncating the file first
      '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)
      ========= ===============================================================
  mode不使用参数默认是'rt',‘w’写模式,会覆盖原来全部的内容(会创建文件),‘x’创建一个新的文件,并写入内容如果文件存在会‘FileExistsError’,‘a’在文件末尾追加内容,‘b’二进制模式,‘+’更新磁盘文件(读写),‘U’弃用
  参数有a和w会创建不存在的文件
  buffering:
      buffering is an optional integer used to set the buffering policy.
      Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
      line buffering (only usable in text mode), and an integer > 1 to indicate
      the>
      given, the default buffering policy works as follows:
  
  * Binary files are buffered in fixed-size chunks; the>
        is chosen using a heuristic trying to determine the underlying device's
        "block>
        On many systems, the buffer will typically be 4096 or 8192 bytes long.
  
      * "Interactive" text files (files for which isatty() returns True)
        use line buffering.  Other text files use the policy described above
        for binary files.
  0 只能用在二进制模式
  1 行缓冲
  >1 则使用给定的值做缓冲大小

  *在没有给出参数的情况下,二进制文件的大小有底层设备“block>  *文本文件则采用行缓冲
  encoding:
  encoding is the name of the encoding used to decode or encode the
      file. This should only be used in text mode. The default encoding is
      platform dependent, but any encoding supported by Python can be
      passed.  See the codecs module for the list of supported encodings.
  encoding是文件的解码或者编码方式,只能用于文本模式,默认的编码方式依赖于平台,任何python能够支持编码都可以在python中使用,可以查看编码模块
  
  errors:
  errors is an optional string that specifies how encoding errors are to
      be handled---this argument should not be used in binary mode. Pass
      'strict' to raise a ValueError exception if there is an encoding error
      (the default of None has the same effect), or pass 'ignore' to ignore
      errors. (Note that ignoring encoding errors can lead to data loss.)
      See the documentation for codecs.register or run 'help(codecs.Codec)'
      for a list of the permitted encoding error strings.
  errors是一个可选的参数,并且不能用于二进制模式,如果出现编码错误会排出ValueError错误,或者使用‘ignoe’忽略,可通过查看codecs.codec获取错误编码字符串
  
  newline:
  newline controls how universal newlines works (it only applies to text
      mode). It can be None, '', '\n', '\r', and '\r\n'.  It works as
      follows:
  
      * On input, if newline is None, universal newlines mode is
        enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
        these are translated into '\n' before being returned to the
        caller. If it is '', universal newline mode is enabled, but line
        endings are returned to the caller untranslated. If it has any of
        the other legal values, input lines are only terminated by the given
        string, and the line ending is returned to the caller untranslated.
  
      * On output, if newline is None, any '\n' characters written are
        translated to the system default line separator, os.linesep. If
        newline is '' or '\n', no translation takes place. If newline is any
        of the other legal values, any '\n' characters written are translated
        to the given string.
  换行控制,参数可以用None, '', '\n', '\r', and '\r\n'(只能用于文本模式)
  *输入时,
  如果参数为None,那么换行符启用,结尾可以是'\n', '\r', or '\r\n',并且这些控制符都会编码为'\n'。
  如果是''换行符模式启用,但是行位的换行符在返回调用时将不会被编码。
  如果给出其他有效参数,返回调用时将会使用指定的参数
  *输出时,
  如果参数为None,任何‘\n’将会编码成系统默认的分隔符
  如果参数为‘’或者'\n',将不会编码
  如果参数为其他有效值,'\n'将会编码成给定的值
  closefd:
  If closefd is False, the underlying file descriptor will be kept open
      when the file is closed. This does not work when a file name is given
      and must be True in that case.
  当文件关闭时,如果closefd为False,底层文件描述仍然是打开,设置为True底层文件描述同时也会关闭。
  opener:
  A custom opener can be used by passing a callable as *opener*. The
      underlying file descriptor for the file object is then obtained by
      calling *opener* with (*file*, *flags*). *opener* must return an open
      file descriptor (passing os.open as *opener* results in functionality
      similar to passing None).
  可以通过调用*opener*来自定义opener,底层文件是通过调用*opener*, *file*, *flags*来获取描述。*opener*必须返回一个打开的文件描述。os.open作为*opener*的返回结果类似于通过None。
   open() returns a file object whose type depends on the mode, and
      through which the standard file operations such as reading and writing
      are performed. When open() is used to open a file in a text mode ('w',
      'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open
      a file in a binary mode, the returned>
      mode, it returns a BufferedReader; in write binary and append binary
      modes, it returns a BufferedWriter, and in read/write mode, it returns
      a BufferedRandom.
  
      It is also possible to use a string or bytearray as a file for both
      reading and writing. For strings StringIO can be used like a file
      opened in a text mode, and for bytes a BytesIO can be used like a file
      opened in a binary mode.
:~/Code$ cat opentest  
pythonis a open testthis is ab
  
abc
  
edf
  
dfc
  
dag
  
dagk
  
asgg
  
asdgag
  
aggfdn
  
sdnhsdfo
  
sdfigsodfnh
  
****
  使用r+的结果
  eg.
>>> f = open('opentest', 'r+')  
>>> f.write('1111')
  
4
  
>>> f.write('2222')
  
4
  
>>> f.write('3333')
  
4
  
>>> f.close()
  再次查看opentest内容
:~/Code$ cat opentest  
111122223333pen testthis is ab
  
abc
  
edf
  
dfc
  
dag
  
dagk
  
asgg
  
asdgag
  
aggfdn
  
sdnhsdfo
  
sdfigsodfnh
  
****
  使用r+,指针在开头,会覆盖掉原位置原有的内容

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-549334-1-1.html 上篇帖子: python导入自定义模块 下篇帖子: Python3中的open函数
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表