list、array、set、tuple转换方式:list转array a1 = np.array(l1) array转list l1 = a1.tolist() list转set s1 = set(l1) set转list l1 = list(s1) ...
確定! 回上一頁