标签: python numpy
通过切片在ndarray中进行基本索引是否有内置边界检查?
在以下示例中,不会引发IndexError。
示例代码:
x=numpy.arange(3) print( 'x[6:9]',x[6:9] )
输出:
x[6:9]=[]