我一直在尝试探索 python 如何在我的系统上长期存储符号。
不确定这是不是这样,我试过buffer(long(-10))
希望它能让我更接近。
但我有TypeError: buffer object expected
。
来自help(buffer)
:
class buffer(object)
| buffer(object [, offset[, size]])
|
| Create a new buffer object which references the given object.
| The buffer will reference a slice of the target object from the
| start of the object (or at the specified offset). The slice will
| extend to the end of the target object (or with the specified size).
我认为一切都是 python 中的对象,我解释了这个文档字符串,以便我可以将任何对象提供给缓冲区的 init。似乎并非如此。
你能帮我理解发生了什么吗?