python 中open()的用法?

open("/path/to/my/image.png","rb")中的‘rb’代表了什么意思?... open("/path/to/my/image.png", "rb") 中的‘rb’代表了什么意思? 展开
 我来答
百度网友619cd53fa
2011-09-15 · TA获得超过440个赞
知道小有建树答主
回答量:201
采纳率:0%
帮助的人:260万
展开全部
r表示只读,b表示二进制
与此对应的是w表示可写,t表示文本方式打开。
再增加一些官方的解释:
>>> print file.__doc__
file(name[, mode[, buffering]]) -> file object

Open a file. The mode can be 'r', 'w' or 'a' for reading (default),
writing or appending. The file will be created if it doesn't exist
when opened for writing or appending; it will be truncated when
opened for writing. Add a 'b' to the mode for binary files.
Add a '+' to the mode to allow simultaneous reading and writing.
If the buffering argument is given, 0 means unbuffered, 1 means line
buffered, and larger numbers specify the buffer size. The preferred way
to open a file is with the builtin open() function.
Add a 'U' to mode to open the file for input with universal newline
support. Any line ending in the input file will be seen as a '\n'
in Python. Also, a file so opened gains the attribute 'newlines';
the value for this attribute is one of None (no newline read yet),
'\r', '\n', '\r\n' or a tuple containing all the newline types seen.
jiaweiqq123
2011-09-16
知道答主
回答量:34
采纳率:0%
帮助的人:21.2万
展开全部
Python 的 open() 下。‘r’代表可读,包括 '+' 代表可读可写, 'b'代表二进制模式访问。 关于 'b' 有一点需要说明, 对于所有 POSIX 兼容的 Unix 系统(包括Linux)来说, 'b'是可由可无的, 因为它们把所有的文件当作二进制文件,包括文本文件。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友8205eb7
2011-09-26
知道答主
回答量:11
采纳率:0%
帮助的人:10万
展开全部
以二进制方式读取
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式