英文文檔: class memoryview(obj) 說明: 1. 函數功能返回記憶體查看對象,實際上是記憶體查看對象(Momory view)的構造函數。 2. 所謂記憶體查看對象,是指對支持緩衝區協議的數據進行包裝,在不需要複製對象基礎上允許Python代碼訪問。 3. Python內置對象中支持緩 ...
英文文檔:
class
memoryview
(obj)
memoryview
objects allow Python code to access the internal data of an object that supports the buffer protocol without copying.- Create a
memoryview
that references obj. obj must support the buffer protocol. Built-in objects that support the buffer protocol includebytes
andbytearray
.
說明:
1. 函數功能返回記憶體查看對象,實際上是記憶體查看對象(Momory view)的構造函數。
2. 所謂記憶體查看對象,是指對支持緩衝區協議的數據進行包裝,在不需要複製對象基礎上允許Python代碼訪問。
3. Python內置對象中支持緩衝區協議的對象有bytes和bytearray。
>>> v = memoryview(b'abcefg') >>> v[1] 98 >>> v[-1] 103 >>> v[1:4] <memory at 0x7f3ddc9f4350> >>> bytes(v[1:4]) b'bce'