标签:list size 16px nbsp span int 取出 nump lis
import numpy as np
s=np.array([[1,2,3],[4,5,6]],np.int32)#相当于list的嵌套
s.shape#数据的分布状况
s.dtype#数据类型
type(s)#s的类型
s[0]#取出第一行或者任意行
s[:,0]#取任意列
s[0,1]#取出任意数,相当于excel的行列
标签:list size 16px nbsp span int 取出 nump lis
原文地址:https://www.cnblogs.com/thechain/p/9260110.html