In this python numpy program, we will get the unique elements of an array using NumPy
Steps to solve the program
- Import the numpy library as np.
- Create an array using np.array().
- Find unique elements of the array using np.unique().
- 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]