Files
freeCodeCamp/curriculum/challenges/japanese/08-data-analysis-with-python/numpy/accessing-and-changing-elements,-rows,-columns.md
2022-01-20 20:30:18 +01:00

677 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e9a0a8e09c5df3cc3600ed4 要素、行、列へのアクセスと変更 11 v-7Y7koJ_N0
aid bvid cid
590517748 BV1Eq4y1f7Fa 409025392
accessing-and-changing-elements-rows-columns

--question--

--text--

次の両方の Numpy 配列について 3 列目の値を 20 に変更するコードはどれですか?

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--

a[:, 3] = 20

a[2, :] = 20

a[:, 2] = 20

a[1, 2] = 20

--video-solution--

3