Skip to content

Commit 150d1f4

Browse files
committed
Typo fixes
1 parent e743e26 commit 150d1f4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

09 Numeric Arrays and Data Visualization/1 NumPy - numeric arrays and calculations.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,11 @@ print(A > 2)
254254
# [[False False True]
255255
# [ True True True]]
256256

257-
print(A[A > 2])Holter
257+
print(A[A > 2])
258+
# [3 4 5 6]
258259

259260
print(A[A % 2 == 0])
260-
[2 4 6]
261+
# [2 4 6]
261262
```
262263

263264
### Assigning new values to arrays

0 commit comments

Comments
 (0)