pyhton列表转换为数组的实例
程序员文章站
2023-03-21 14:04:34
实例如下:
import numpy as np
X=[[1,2,3,4],[5,6,7,8],[9,0,11,12]]
'列表转换为数组'
Y=np.ar...
实例如下:
import numpy as np X=[[1,2,3,4],[5,6,7,8],[9,0,11,12]] '列表转换为数组' Y=np.array(X) print(Y) #输出结果 # [[ 1 2 3 4] # [ 5 6 7 8] # [ 9 0 11 12]]
以上这篇pyhton列表转换为数组的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。