Files
freeCodeCamp/curriculum/challenges/japanese/08-data-analysis-with-python/numpy/accessing-and-changing-elements,-rows,-columns.md

55 lines
677 B
Markdown
Raw Permalink Normal View History

---
id: 5e9a0a8e09c5df3cc3600ed4
title: '要素、行、列へのアクセスと変更'
challengeType: 11
videoId: v-7Y7koJ_N0
bilibiliIds:
aid: 590517748
bvid: BV1Eq4y1f7Fa
cid: 409025392
dashedName: accessing-and-changing-elements-rows-columns
---
# --question--
## --text--
次の両方の Numpy 配列について 3 列目の値を 20 に変更するコードはどれですか?
```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