chore(i18n,chn): manually downloaded curriculum (#42858)

This commit is contained in:
Mrugesh Mohapatra
2021-07-15 13:04:11 +05:30
committed by GitHub
parent eef1805fe6
commit 7eb0630f2d
248 changed files with 5645 additions and 2149 deletions

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed4
title: 'Accessing and Changing Elements, Rows, Columns'
title: '访问与更改元素、行和列'
challengeType: 11
videoId: v-7Y7koJ_N0
dashedName: accessing-and-changing-elements-rows-columns
@ -10,7 +10,7 @@ dashedName: accessing-and-changing-elements-rows-columns
## --text--
What code would change the values in the 3rd column of both of the following Numpy arrays to 20?
以下哪行代码将下面的 Numpy 数组的第三行的数值都更改成 20
```py
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed3
title: Basics of Numpy
title: Numpy 的基础知识
challengeType: 11
videoId: f9QrZrKQMLI
dashedName: basics-of-numpy
@ -10,7 +10,7 @@ dashedName: basics-of-numpy
## --text--
What will the following code print?
以下代码将打印出什么?
```python
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed7
title: Copying Arrays Warning
title: 复制数组警告
challengeType: 11
videoId: iIoQ0_L0GvA
dashedName: copying-arrays-warning
@ -10,7 +10,7 @@ dashedName: copying-arrays-warning
## --text--
What is the value of `a` after running the following code?
运行以下代码后, `a` 的值是多少?
```py
import numpy as np

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed6
title: Initialize Array Problem
title: 初始化数组问题
challengeType: 11
videoId: 0jGfH8BPfOk
dashedName: initialize-array-problem
@ -10,7 +10,7 @@ dashedName: initialize-array-problem
## --text--
What is another way to produce the following array?
产生以下数组的另一种方式是什么?
```py
[[0. 0. 0. 0. 0. 0. 0.]

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed5
title: Initializing Different Arrays
title: 初始化不同的数组
challengeType: 11
videoId: CEykdsKT4U4
dashedName: initializing-different-arrays
@ -10,7 +10,7 @@ dashedName: initializing-different-arrays
## --text--
What will the following code print?
以下代码将打印出什么?
```py
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed8
title: Mathematics
title: 数学
challengeType: 11
videoId: 7txegvyhtVk
dashedName: mathematics
@ -10,7 +10,7 @@ dashedName: mathematics
## --text--
What is the value of `b` after running the following code?
运行以下代码后, `b` 的值是多少?
```py
import numpy as np

View File

@ -1,6 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed9
title: Reorganizing Arrays
title: 重组数组
challengeType: 11
videoId: VNWAQbEM-C8
dashedName: reorganizing-arrays
@ -10,7 +10,7 @@ dashedName: reorganizing-arrays
## --text--
What code would produce the following array?
哪个代码会生成下面的数组?
```py
[[1. 1.]