mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-12 15:03:20 -05:00
1.0 KiB
1.0 KiB
id, title, challengeType, videoId, bilibiliIds, dashedName
| id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5e9a093a74c4063ca6f7c156 | Numpy Boolean Arrays | 11 | N1ttsMmcVMM |
|
numpy-boolean-arrays |
--description--
Anstatt, wie in dem Video gezeigt, notebooks.ai zu verwenden, kannst du auch Google Colab verwenden.
Weitere Ressourcen:
--question--
--text--
Was gibt der folgende Code aus?
a = np.arange(5)
print(a <= 3)
--answers--
[False, False, False, False, True]
[5]
[0, 1, 2, 3]
[True, True, True, True, False]
--video-solution--
4