[10, 11]])
# 右侧超出范围之后
In [57]: arr[:,0:100]
Out[57]:
array([[ 0, 1, 2, 3, 4],
[ 5, 6,...7, 8, 9],
[10, 11, 12, 13, 14]])
# 左侧超出范围之后
In [62]: arr[:,-10:2]
Out[62]:
array([[ 0, 1]...,1]
Out[73]:
array([[ 5, 6, 7, 8, 9],
[20, 21, 22, 23, 24]])
# 异常指出 axis = 1 超出范围
In [74]...index]'# 索引 Int64IndexOut[172]: Int64Index([2, 3, 4], dtype='int64')
# 索引为字符串In [168]: df = pd.DataFrame...当使用字符串时切片时是 []区间 ,一般是 [)区间
当在numpy.ndarry、list、tuple、pandas.Series、pandas.DataFrame 混合使用时,采用变量进行索引或者切割