Update task06 输入输出.md

This commit is contained in:
MYP
2020-11-28 20:45:23 +08:00
parent be84575481
commit 58a6d220e1

View File

@@ -381,8 +381,6 @@ import numpy as np
a = np.arange(15)
```
**3打印完整的numpy数组a而不中断。**
【知识点:输入和输出】
@@ -395,4 +393,4 @@ import numpy as np
a = np.arange(15)
np.set_printoptions(threshold=6)
print(a)
```
```