freeCodeCamp/curriculum/challenges/portuguese/08-data-analysis-with-python/data-analysis-with-python-c.../numpy-operations.md

906 B

id title challengeType videoId bilibiliIds dashedName
5e9a093a74c4063ca6f7c155 Conhecer operações do NumPy 11 eqSVcJbaPdk
aid bvid cid
378057123 BV13f4y1w7od 409012507
numpy-operations

--description--

Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.

Mais recursos:

--question--

--text--

Qual é o valor de a depois de executar o seguinte código?

a = np.arange(5)
a + 20

--answers--

[20, 21, 22, 24, 24]

[0, 1, 2, 3, 4]

[25, 26, 27, 28, 29]

--video-solution--

2