Вы можете получить больше информации по коду, указанному ниже: -
import numpy as np
x = np.array([1,1,1,2,2,2,5,25,1,1])
unique, counts = np.unique(x, return_counts=True)
print(f"The number of unique values are \t {len(unique)}")
print()
for value, number in zip(unique,counts):
print(f"The value {value} repeats \t -->> {number} times")
Надеюсь, вы узнаете что-то новое, связанное с вашим вопросом.