2019-05-30数组转列表2019-05-30 本文已影响0人 Jin_Qiangimport numpy as np a = np.array([1, 2, 3]) b = a.tolist() print(b)