freeCodeCamp/curriculum/challenges/italian/08-data-analysis-with-python/numpy/accessing-and-changing-elem...

666 B

id title challengeType videoId bilibiliIds dashedName
5e9a0a8e09c5df3cc3600ed4 Accedere e cambiare elementi, righe, colonne 11 v-7Y7koJ_N0
aid bvid cid
590517748 BV1Eq4y1f7Fa 409025392
accessing-and-changing-elements-rows-columns

--question--

--text--

Quale codice imposterebbe a 20 il valore della terza colonna per entrambi i seguenti array Numpy?

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