chore(i18n,curriculum): processed translations (#42868)

This commit is contained in:
camperbot
2021-07-16 11:03:16 +05:30
committed by GitHub
parent 1f5f07cad3
commit 3b32da0191
429 changed files with 7502 additions and 4006 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.]