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

889 B

id title challengeType videoId dashedName
5e9a093a74c4063ca6f7c155 Numpy 的运算 11 eqSVcJbaPdk numpy-operations

--description--

在视频中我们使用的编辑器工具是在 notebook.ai 这个平台,你也可以选择用其他的平台,比如说 Google Colab 也是一个不错的选择。

更多资源:

--question--

--text--

运行以下代码后, a 的值是多少?

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