chore(learn): Applied MDX format to Chinese curriculum files (#40462)

This commit is contained in:
Randell Dawson
2020-12-16 00:37:30 -07:00
committed by GitHub
parent 873fce02a2
commit 9ce4a02a41
1665 changed files with 58741 additions and 88042 deletions

View File

@ -4,42 +4,45 @@ challengeType: 11
videoId: f9QrZrKQMLI
---
## Description
# --question--
<section id='description'>
</section>
## --text--
## Tests
What will the following code print?
<section id='tests'>
```python
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])
print(b)
```
````yml
question:
text: |
What will the following code print?
## --answers--
```python
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])
print(b)
```
answers:
- |
```python
[[1.0 2.0 3.0]
[3.0 4.0 5.0]]
```
- |
```python
[[1. 2. 3.]
[3. 4. 5.]]
```
- |
```python
[[1. 3.]
[2. 4.]
[3. 5.]
```
solution: 2
````
```python
[[1.0 2.0 3.0]
[3.0 4.0 5.0]]
```
---
```python
[[1. 2. 3.]
[3. 4. 5.]]
```
---
```python
[[1. 3.]
[2. 4.]
[3. 5.]
```
## --video-solution--
2
# --hints--
# --solutions--
</section>