First convert to list, and then use count to find (ndarray has no count method)
mylist= myndarray.tolist() for i in range(len(mylist)): if mylist.count(mylist[i]) > 1: print(mylist[i])