unique()函数可输出列表,元组和series中的不同元素. 且只能输出dataframe的某一列series中的不同元素,不能同时输出. 返回的都是一个ndarry,但不能输出ndarry中的不同元素,即对ndarry无效. A = [1, 2, 2, 5,3, 4, 3] a = np.unique(A) B, , ,, , , ) b= np.unique(B) C= ['fgfh','asd','fgfh','asdfds','wrh'] c= np.unique(C) d = df