fix No.25

This commit is contained in:
Your Name
2020-02-12 18:09:05 +08:00
parent 281ec484ae
commit c7cf6fd5f3
4 changed files with 4 additions and 4 deletions

View File

@@ -211,7 +211,7 @@ print(Z)
# Author: Evgeni Burovski
Z = np.arange(11)
Z[(3 < Z) & (Z <= 8)] *= -1
Z[(3 < Z) & (Z < 8)] *= -1
print(Z)
```
#### 26. What is the output of the following script? (★☆☆)