Python Numpy ndarray.tobytes()
numpy.ndarray.tobytes()函数构建包含数组中原始数据字节的Python字节。
语法: numpy.ndarray.tobytes(order=’C’)
参数 :
order : [{‘C’, ‘F’, None}, optional] 多维数组的数据的顺序。C, Fortran, 或与原始数组相同。
返回:Python字节显示了arr的原始数据的副本。
代码#1:
# Python program explaining
# numpy.ndarray.tobytes() function
# importing numpy as geek
import numpy as geek
arr = geek.array([[0, 1], [2, 3]], dtype ='<u2')
gfg = arr.tobytes()
print (gfg)
输出 :
b'\x00\x00\x01\x00\x02\x00\x03\x00'
代码#2:
# Python program explaining
# numpy.ndarray.tobytes() function
# importing numpy as geek
import numpy as geek
arr = geek.array([[0, 1], [2, 3]], dtype ='<u2')
gfg = arr.tobytes('F')
print (gfg)
输出 :
b'\x00\x00\x02\x00\x01\x00\x03\x00'