mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-28 23:01:57 -04:00
889 B
889 B
id, title, challengeType, videoId, dashedName
| 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