为什么以下操作有所不同?它们是如何在库中实现的?
print(prov_img[:19][:20].shape) Output : (19, 1250) print(prov_img[:19,:20].shape) Output : (19, 20)
python numpy python-3.x
numpy ×1
python ×1
python-3.x ×1