Python memoryview() 函数

  • 定义和用法

    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(obj)
  • 参数值

    参数 必需的 描述
    obj 字节对象或字节数组对象。
  • 相关页面

    min() - 返回的最低值。