Friday, October 18, 2024
Google search engine
HomeLanguagesnumpy.ndarray.size() method | Python

numpy.ndarray.size() method | Python

numpy.ndarray.size() function return the number of elements in the array. it equal to np.prod(a.shape), i.e., the product of the array’s dimensions.

Syntax : numpy.ndarray.size(arr)

Parameters :
arr : [array_like] Input array.

Return : [int] The number of elements in the array.

Code #1 :




# Python program explaining
# numpy.ndarray.size() function
  
# importing numpy as geek 
import numpy as geek
  
arr = geek.zeros((3, 4, 2), dtype = geek.complex128)
  
gfg = arr.size
  
print (gfg)


Output :

24

 
Code #2 :




# Python program explaining
# numpy.ndarray.size() function
  
# importing numpy as geek 
import numpy as geek
  
arr = geek.zeros((3, 4, 2), dtype = geek.complex128)
  
gfg = geek.prod(arr.shape)
  
print (gfg)


Output :

24

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments