Python Numpy ndarray.item()
在numpy.ndarray.item()方法的帮助下,我们可以获取numpy数组中给定索引的数据元素。记住,我们可以把索引作为一维参数,也可以是二维的。
参数:
*args : 参数(变量编号和类型)。
-> 无。这个参数只在数组的大小为1时有效。
-> int_type。这个参数被解释为数组中的一个平面索引,指定返回哪个元素。
-> tuple of int_types。这个参数被解释为一个二维数组,通过指定哪个元素来返回。
退货:物品的副本
例子#1 :
在这个例子中,我们可以看到,通过在ndarray.item()方法中指定参数,如果该元素存在于这个索引上,我们就可以得到它。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, 2, 3, 4, 5])
# applying ndarray.item() method
print(gfg.item(2))
输出:
3
例子#2 :
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([[1, 2, 3, 4, 5],
[6, 5, 4, 3, 2]])
# applying ndarray.item() method
print(gfg.item((1, 2)))
输出:
4