在Numpy.ndarray.__gt__()
方法的帮助下,我们可以找到数组中哪个元素比参数中提供的值大。它将返回只有True和False值的布尔类型的数组。
语法: ndarray.__gt__($self, value, /)
返回: self>value
例子#1 :
在这个例子中,我们可以看到在应用numpy.__gt__()
之后,我们得到一个简单的布尔数组,它可以告诉我们数组中哪个元素大于所提供的参数。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1, 2, 3, 4, 5, 6])
# applying numpy.__gt__() method
print(gfg.__gt__(3))
输出:
[False False False True True True]
例子#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],
[6, 5, 4, 3, 2, 1]])
# applying numpy.__gt__() method
print(gfg.__gt__(4))
输出:
[[False False False False True True]
[True True False False False False]]