NumPy笔记:数组去重

import numpy as np
a = np.array([1, 2, 3, 4, 2, 3, 2, 4, 6, 3, 5])
print(np.unique(a))
[1 2 3 4 5 6]

 

posted @ 2019-09-10 22:31  Jumpkin1122  阅读(493)  评论(0编辑  收藏  举报