标签: python arrays performance
我有一个数组(矢量,矩阵)类型,我经常使用子范围。例如:
x = x + y[i:j]
y[i:j]在将参数传递给加法运算符之前是否创建了临时副本?
y[i:j]
谢谢!