Open In App

numpy.ndarray.itemsize() method | Python

Improve
Improve
Like Article
Like
Save
Share
Report

numpy.ndarray.itemsize() function return the length of one array element in bytes.

Syntax : numpy.ndarray.itemsize(arr)

Parameters :
arr : [array_like] Input array.

Return : [int] The length of one array element in bytes

Code #1 :




# Python program explaining
# numpy.ndarray.itemsize() function
  
# importing numpy as geek 
import numpy as geek
  
arr = geek.array([1, 2, 3, 4], dtype = geek.float64)
  
gfg = arr.itemsize
  
print (gfg)


Output :

8

 
Code #2 :




# Python program explaining
# numpy.ndarray.itemsize() function
  
# importing numpy as geek 
import numpy as geek
  
arr = geek.array([1, 2, 3, 4],  dtype = geek.complex128)
  
gfg = arr.itemsize
  
print (gfg)


Output :

16

Last Updated : 26 Mar, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads