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

In this python numpy program, we will 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 greater equal using ( >= ).
  4. Print the output.
				
					import numpy as np
x = np.array([6,4])
y = np.array([6,3])

print(x >= y)
				
			

Output :

				
					[ True  True]
				
			

create an element-wise comparison (greater than).

create an element-wise comparison (less than).

Leave a Comment