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