Python memoryview() 函数
Python基础 2022-06-06 14:34:56小码哥的IT人生shichen
Python memoryview() 函数
实例
创建并打印 memoryview 对象:
x = memoryview(b"Hello")
print(x)
# 返回首个字符的 Unicode
print(x[0])
# 返回第二个字符的 Unicode
print(x[1])
完整实例:
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)
参数值
参数 | 描述 |
---|---|
obj | 字节对象或字节数组对象。 |