当前位置:   article > 正文

python open mode_open文件操作之mode模式剖析

python open mode

Python可以使用open函数来实现文件的打开,关闭,读写操作;

Python3中的open函数定义为:

open(file, mode='r', buffering=None, encoding=None, errors=None, newline=None, closefd=True)

其中mode列表为:

'r' #open for reading (default)

'w' #open for writing, truncating the file first

'x' #create a new file and open it for writing,python3新增

'a' #open for writing, appending to the end of the file if it exists

'b' #binary mode

't' #text mode (default),python3新增

'+' #open a disk file for updating (reading and writing)

'U' #universal newline mode (deprecated)

这里我们主要关心一下'r', 'w', 'a', 'r+', 'w+', 'a+', 'x',很多人容易混淆不同模式的读写操作

1)'r'

只读模式,open函数中mod

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/278403
推荐阅读
相关标签
  

闽ICP备14008679号