numpy.ndarray.tobytes()函数构造包含数组中原始数据字节的Python字节。
用法: numpy.ndarray.tobytes(order=’C’)
参数:
order:[{'C','F',无},可选]多维数组的数据顺序:C,Fortran或与原始数组相同。
Return :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'
相关用法
- Python numpy.ix_()用法及代码示例
- Python numpy.cov()用法及代码示例
- Python numpy.ma.make_mask_none()用法及代码示例
- Python numpy.ma.flatnotmasked_contiguous()用法及代码示例
- Python numpy.ma.flatnotmasked_edges()用法及代码示例
- Python numpy.ma.mask_cols()用法及代码示例
- Python numpy.ma.notmasked_edges()用法及代码示例
- Python numpy.ma.clump_unmasked()用法及代码示例
- Python numpy.ma.clump_masked()用法及代码示例
- Python numpy.mask_indices()用法及代码示例
- Python numpy.vander()用法及代码示例
- Python numpy.unravel_index()用法及代码示例
- Python numpy.ravel_multi_index()用法及代码示例
- Python numpy.ma.mask_or()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Numpy ndarray.tobytes() function | Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。