当前位置:主页 > 软件编程 > Python代码 >

pyhton列表转换为数组的实例

时间:2021-01-05 13:54:49 | 栏目:Python代码 | 点击:

实例如下:

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]]

您可能感兴趣的文章:

相关文章