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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。