Python memoryview ()ฟังก์ชั่น
ตัวอย่าง
สร้างและพิมพ์วัตถุ memoryview:
x = memoryview(b"Hello")
print(x)
#return the Unicode of the
first character
print(x[0])
#return the Unicode of the second
character
print(x[1])
ความหมายและการใช้งาน
ฟังก์ชันmemoryview()
ส่งคืนวัตถุมุมมองหน่วยความจำจากวัตถุที่ระบุ
ไวยากรณ์
memoryview(obj)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
obj | A Bytes object or a Bytearray object. |