NumPy program to create an element-wise comparison using NumPy.

In this python numpy program, we will program to create an element-wise comparison using NumPy.

Steps to solve the program
  1. Import the numpy library as np.
  2. Create two arrays using np.array().
  3. Create an element-wise comparison less than using NumPy ( < ).
  4. Print the output.
				
					import numpy as np
x = np.array([6,4])
y = np.array([2,9])

print(x < y)
				
			

Output :

				
					[False  True]
				
			

create an element-wise comparison (greater equal).

create an array with the values 10,34,86,26,56.

Leave a Comment