chore(i18n,learn): processed translations (#45432)

This commit is contained in:
camperbot
2022-03-14 22:46:48 +05:30
committed by GitHub
parent 9a48c71ecf
commit d94177d85c
61 changed files with 592 additions and 335 deletions

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed4
title: 'Accessing and Changing Elements, Rows, Columns'
title: 'Acceder y cambiar elementos, filas, columnas'
challengeType: 11
videoId: v-7Y7koJ_N0
bilibiliIds:
aid: 590517748
bvid: BV1Eq4y1f7Fa
cid: 409025392
dashedName: accessing-and-changing-elements-rows-columns
---
@ -10,7 +14,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?
¿Qué código cambiaría los valores en la tercera columna de los siguientes matrices Numpy a 20?
```py
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed3
title: Basics of Numpy
title: Fundamentos de Numpy
challengeType: 11
videoId: f9QrZrKQMLI
bilibiliIds:
aid: 763014202
bvid: BV1K64y1a7bu
cid: 409025169
dashedName: basics-of-numpy
---
@ -10,7 +14,7 @@ dashedName: basics-of-numpy
## --text--
What will the following code print?
¿Qué hará el siguiente código?
```python
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed2
title: What is NumPy
title: Qué es NumPy
challengeType: 11
videoId: 5Nwfs5Ej85Q
bilibiliIds:
aid: 293086867
bvid: BV1Tf4y1E7QZ
cid: 409024791
dashedName: what-is-numpy
---
@ -10,23 +14,23 @@ dashedName: what-is-numpy
## --text--
Why are Numpy arrays faster than regular Python lists?
¿Por qué los arreglos Numpy son más rápidos que las listas de Python?
## --answers--
Numpy does not perform type checking while iterating through objects.
¿Por qué los arreglos Numpy son más rápidas que las listas normales de Python.
---
Numpy uses fixed types.
Numpy usa tipos fijos.
---
Numpy uses contiguous memory.
Numpy usa memoria contigua.
---
All of the above.
Todo lo anterior.
## --video-solution--