[ Web Proxy ]
URL:
Viewing: https://docs.scipy.org/doc/numpy/reference/generated/numpy.ndarray.itemsize.html [Back]  [Original]

numpy.ndarray.itemsize — NumPy v2.5 Manual
Back to top
Search the docs ...:

numpy.ndarray.itemsize#

attribute

ndarray.itemsize#

Length of one array element in bytes.

Examples

Try it in your browser!
>>> import numpy as np
>>> x = np.array([1,2,3], dtype=np.float64)
>>> x.itemsize
8
>>> x = np.array([1,2,3], dtype=np.complex128)
>>> x.itemsize
16

Web Proxy Viewer  |  New URL  |  Original Page