fix: numpy accessing and changing elements

This commit is contained in:
niteshseram 2020-06-01 21:04:13 +05:30 committed by Kristofer Koishigawa
parent 31614fa9a6
commit 40cd0982f7

View File

@ -22,7 +22,7 @@ question:
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
# Output:
# [[ 1 2 3 4 5]
# [[ 1 2 20 4 5]
# [ 6 7 20 9 10]]
```
answers: