0
file = open("images.jpeg", "rb")

c = file.read(512)
print(type(c))
print(c)

file.close()

c 是一个 str 对象。它不应该是一个字节对象吗?根据医生的说法,应该是!

在 Python 3.2 中,它实际上是一个字节对象。Python2.7 发生了什么?

平台:Kubuntu 12.04 64 位

4

1 回答 1

3

bytesstrPython 2.7中的别名

于 2012-09-30T13:50:43.077 回答