2021-02-06 04:42:36 +00:00
|
|
|
---
|
|
|
|
id: 5e9a0a8e09c5df3cc3600ed4
|
2022-03-14 22:46:48 +05:30
|
|
|
title: 'Acceder y cambiar elementos, filas, columnas'
|
2021-02-06 04:42:36 +00:00
|
|
|
challengeType: 11
|
|
|
|
videoId: v-7Y7koJ_N0
|
2022-03-14 22:46:48 +05:30
|
|
|
bilibiliIds:
|
|
|
|
aid: 590517748
|
|
|
|
bvid: BV1Eq4y1f7Fa
|
|
|
|
cid: 409025392
|
2021-02-06 04:42:36 +00:00
|
|
|
dashedName: accessing-and-changing-elements-rows-columns
|
|
|
|
---
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
2022-03-14 22:46:48 +05:30
|
|
|
¿Qué código cambiaría los valores en la tercera columna de los siguientes matrices Numpy a 20?
|
2021-02-06 04:42:36 +00:00
|
|
|
|
|
|
|
```py
|
|
|
|
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
|
|
|
|
|
|
|
|
# Output:
|
|
|
|
# [[ 1 2 20 4 5]
|
|
|
|
# [ 6 7 20 9 10]]
|
|
|
|
```
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
```python
|
|
|
|
a[:, 3] = 20
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
a[2, :] = 20
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
a[:, 2] = 20
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
```python
|
|
|
|
a[1, 2] = 20
|
|
|
|
```
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
3
|
|
|
|
|