2019-05-30数组转列表

import numpy as np
a = np.array([1,  2,  3])
b = a.tolist()
print(b)

你可能感兴趣的:(2019-05-30数组转列表)