Files

868 B

id, title, challengeType, videoId, dashedName
id title challengeType videoId dashedName
5e9a093a74c4063ca6f7c154 Array di Numpy 11 VDYVFHBL1AM numpy-arrays

--description--

Invece di usare notebooks.ai come mostrato nel video, puoi usare Google Colab.

Altre risorse:

--question--

--text--

Cosa verrà visualizzato nella console con il seguente codice?

A = np.array([
    ['a', 'b', 'c'],
    ['d', 'e', 'f'],
    ['g', 'h', 'i']
])

print(A[:, :2])

--answers--

[['a' 'b']]

[['b' 'c']
['e' 'f']
['h' 'i']]

[['a' 'b']
['d' 'e']
['g' 'h']]

--video-solution--

3