Numpy 的 itemsize
属性返回数组数据类型的内存大小(以字节为单位)。
例子
a = np.array([1,2,3], dtype="int64")
a.itemsize
8
在这里,数组中的内容是无关紧要的——这里只有数据类型很重要。我们将数组的数据类型设置为"int64",这意味着数组中的每一项都是 8 个字节(即 64 位)。这正是输出告诉我们的内容。
为了深入理解这个概念,请考虑以下几点:
a = np.array([1,2,3], dtype="int32")
a.itemsize
4
这里,32 位整数对应 4 个字节,因此这就是返回的内容。
相关用法
- Python NumPy itemset方法用法及代码示例
- Python dict items()用法及代码示例
- Python NumPy item方法用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python itertools.cycle用法及代码示例
- Python itertools.dropwhile用法及代码示例
- Python itertools.repeat用法及代码示例
- Python itertools.combinations_with_replacement用法及代码示例
- Python itertools.groupby()用法及代码示例
- Python itertools.repeat()用法及代码示例
- Python iter用法及代码示例
- Python itertools.count用法及代码示例
- Python itertools.starmap用法及代码示例
- Python itertools.filterfalse用法及代码示例
- Python itertools.chain.from_iterable用法及代码示例
- Python itertools.groupby用法及代码示例
- Python itertools.zip_longest用法及代码示例
- Python calendar itermonthdays2()用法及代码示例
- Python itertools.accumulate用法及代码示例
- Python itertools.tee用法及代码示例
- Python itertools.combinations用法及代码示例
- Python itertools.permutations用法及代码示例
- Python itertools.product用法及代码示例
- Python calendar itermonthdays()用法及代码示例
- Python itertools.chain用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | itemsize property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。