In this python numpy program, we will program to create an element-wise comparison using NumPy.
Steps to solve the program
- Import the numpy library as np.
- Create two arrays using np.array().
- Create an element-wise comparison less than using NumPy ( < ).
- Print the output.
import numpy as np
x = np.array([6,4])
y = np.array([2,9])
print(x < y)
Output :
[False True]