學習筆記(一)

張好芒發表於2020-10-18

1、python 三個省略號的作用


```python
a=np.array([1,2,3,4])
print(a[...,1])
2
省略號後面的數字代表的就是**索引**

相關文章