python中 list 与数组的互相转

2020-01-03 16:46:15 浏览数 (1)

python中 list 与数组的互相转换

(1)list转array

    np.array(a)

(2)array 转list

    a.tolist()

0 人点赞