From b101d4bbb3d8193d0992c9b4271e9c1be8855157 Mon Sep 17 00:00:00 2001 From: Beau Carnes Date: Wed, 29 Apr 2020 20:41:08 -0400 Subject: [PATCH] feat(learn): add Numpy video question. (#38619) --- .../numpy/basics-of-numpy.english.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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]])
print(b)
' answers: - - one - - two - - three - solution: 3 + - '
[[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
 ```