xxxxxxxxxx
import numpy as np
scalerValue = 0.5
A = np.array([1, 1, 4.00003, 6])
print(A.all() > 0.5)
#-------------OUTPUT----------------
True
#-----------------------------------
# Similarly other logical operators can be used in
# place of Less than (<) operator as follows:
# > Greater than
# >= Greater or equal to
# <= Less or equal to
# == Equal to