feat(learn): add Numpy video question. (#38619)

This commit is contained in:
Beau Carnes
2020-04-29 20:41:08 -04:00
committed by Mrugesh Mohapatra
parent ded962ef9e
commit b101d4bbb3

View File

@ -14,12 +14,12 @@ videoId: f9QrZrKQMLI
```yml ```yml
question: question:
text: Question text: 'What will the following code print:<pre>b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])<br>print(b)</pre>'
answers: answers:
- one - '<pre>[[1.0 2.0 3.0]<br>[3.0 4.0 5.0]]<pre>'
- two - '<pre>[[1. 2. 3.]<br>[3. 4. 5.]]<pre>'
- three - '<pre>[[1. 3.]<br>[2. 4.]<br>[3. 5.]<pre>'
solution: 3 solution: 2
``` ```
</section> </section>