# Python CodeRecipe|memoryview()の使い方
# memoryview()の例1
Create and print a memoryview object:
x = memoryview(b"Hello")print(x)#return the Unicode of the
first characterprint(x[0])#return the Unicode of the second
characterprint(x[1])
# memoryview()の定義及び使い方
memoryview()関数は、指定されたオブジェクトからメモリビューオブジェクトを返します。
# memoryview()の構文
memoryview(obj)
# memoryview()の引数
オブジェクト BytesオブジェクトまたはBytearrayオブジェクト。