Get the unique elements of an array using NumPy

In this python numpy program, we will get the unique elements of an array using NumPy

Steps to solve the program
  1. Import the numpy library as np.
  2. Create an array using np.array().
  3. Find unique elements of the array using np.unique().
  4. Print the output
				
					import numpy as np
x = np.array([25,33,10,45,33,10])

print(np.unique(x))
				
			

Output :

				
					[10 25 33 45]
				
			

find common elements between two arrays.

find the set difference between two arrays.

Leave a Comment