Python3中的open函数

简介:

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 size of a fixed-size chunk buffer.  When no buffering argument is

    given, the default buffering policy works as follows:

* Binary files are buffered in fixed-size chunks; the size of the buffer

      is chosen using a heuristic trying to determine the underlying device's

      "block size" and falling back on `io.DEFAULT_BUFFER_SIZE`.

      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 size”决定,可以通过‘io.DEFAULT_BUFFER_SIZE’获取,在很多系统中这个值的大小为4096或者8192字节

*文本文件则采用行缓冲

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 class varies: in read binary

    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.


1
2
3
4
5
6
7
8
9
10
11
12
13
:~ /Code cat  opentest
pythonis a  open  testthis is ab
abc
edf
dfc
dag
dagk
asgg
asdgag
aggfdn
sdnhsdfo
sdfigsodfnh
****

使用r+的结果

eg.

1
2
3
4
5
6
7
8
>>> f  =  open ( 'opentest' 'r+' )
>>> f.write( '1111' )
4
>>> f.write( '2222' )
4
>>> f.write( '3333' )
4
>>> f.close()


再次查看opentest内容

1
2
3
4
5
6
7
8
9
10
11
12
13
:~ /Code cat  opentest
111122223333pen testthis is ab
abc
edf
dfc
dag
dagk
asgg
asdgag
aggfdn
sdnhsdfo
sdfigsodfnh
****

使用r+,指针在开头,会覆盖掉原位置原有的内容




     本文转自forsk 51CTO博客,原文链接:http://blog.51cto.com/forsk/2059134,如需转载请自行联系原作者



相关文章
|
13天前
|
Python
python函数的参数学习
学习Python函数参数涉及五个方面:1) 位置参数按顺序传递,如`func(1, 2, 3)`;2) 关键字参数通过名称传值,如`func(a=1, b=2, c=3)`;3) 默认参数设定默认值,如`func(a, b, c=0)`;4) 可变参数用*和**接收任意数量的位置和关键字参数,如`func(1, 2, 3, a=4, b=5, c=6)`;5) 参数组合结合不同类型的参数,如`func(1, 2, 3, a=4, b=5, c=6)`。
14 1
|
27天前
|
Python
Python函数使用(四)
Python函数使用(四)
60 0
|
18小时前
|
数据挖掘 数据处理 索引
python常用pandas函数nlargest / nsmallest及其手动实现
python常用pandas函数nlargest / nsmallest及其手动实现
8 0
|
5天前
|
Serverless 开发者 Python
《Python 简易速速上手小册》第3章:Python 的函数和模块(2024 最新版)
《Python 简易速速上手小册》第3章:Python 的函数和模块(2024 最新版)
38 1
|
6天前
|
索引 Python
Python高维变量选择:SCAD平滑剪切绝对偏差惩罚、Lasso惩罚函数比较
Python高维变量选择:SCAD平滑剪切绝对偏差惩罚、Lasso惩罚函数比较
|
7天前
|
Python
python学习-函数模块,数据结构,字符串和列表(下)
python学习-函数模块,数据结构,字符串和列表
47 0
|
7天前
05-python之函数-函数的定义/函数的参数/函数返回值/函数说明文档/函数的嵌套使用/函数变量的作用域
05-python之函数-函数的定义/函数的参数/函数返回值/函数说明文档/函数的嵌套使用/函数变量的作用域
|
8天前
|
Python
python学习10-函数
python学习10-函数
|
8天前
|
Python
python学习4-内置函数range()、循环结构、循环控制语句、else语句、嵌套循环
python学习4-内置函数range()、循环结构、循环控制语句、else语句、嵌套循环
|
12天前
|
测试技术 开发者 Python
Python中的装饰器:优雅而强大的函数修饰工具
在Python编程中,装饰器是一种强大的工具,用于修改函数或方法的行为。本文将深入探讨Python中装饰器的概念、用法和实际应用,以及如何利用装饰器实现代码的优雅和高效。