diff --git a/curriculum/challenges/english/08-data-analysis-with-python/numpy/basics-of-numpy.english.md b/curriculum/challenges/english/08-data-analysis-with-python/numpy/basics-of-numpy.english.md index b417639674..8d0dfff845 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/numpy/basics-of-numpy.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/numpy/basics-of-numpy.english.md @@ -14,12 +14,12 @@ videoId: f9QrZrKQMLI ```yml question: - text: Question + text: 'What will the following code print:
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])' answers: - - one - - two - - three - solution: 3 + - '
print(b)
[[1.0 2.0 3.0]
[3.0 4.0 5.0]]' + - '[[1. 2. 3.]
[3. 4. 5.]]' + - '[[1. 3.]
[2. 4.]
[3. 5.]' + solution: 2 ```