4.2 元素去重# 4.2.1 一维数组去重a = np.array([1, 2, 3, 4, 5, 5, 7, 3, 2, 2, 8, 8]) print('去重前:', a) b = np.unique(a) print('去重后:', ...
確定! 回上一頁