Python numpy.ndarray.size()

Python numpy.ndarray.size()

numpy.ndarray.size()函数返回数组中的元素数。它等于np.prod(a.shape),即数组的尺寸之积。

语法: numpy.ndarray.size(arr)

参数 :
arr : [array_like] 输入阵列。

返回 : [int] 数组中的元素数量。

代码#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)

输出 :

24

代码#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)

输出 :

24

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程