在Numpy.ndarray.__lt__()
方法的帮助下,我们可以找到数组中哪个元素小于参数中提供的值。它将返回只有True和False值的布尔类型的数组。
语法: ndarray.__lt__($self, value, /)
返回: self<value
例子#1 :
在这个例子中,我们可以看到在应用numpy.__lt__()
之后,我们得到了一个简单的布尔数组,它可以告诉我们数组中哪个元素小于所提供的参数。
# 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.__lt__() method
print(gfg.__lt__(4))
输出:
[True True True False False False]
例子#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.__lt__() method
print(gfg.__lt__(4))
输出:
[[True True True False False False]
[False False False True True True]]