992 B
992 B
id, title, challengeType, videoId, bilibiliIds, dashedName
id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|
5e9a093a74c4063ca6f7c156 | Numpy のブール配列 | 11 | N1ttsMmcVMM |
|
numpy-boolean-arrays |
--description--
動画で説明しているように、notebooks.ai を使用する代わりに Google Colab を使用することができます。
その他のリソース:
--question--
--text--
次のコードは何を表示しますか?
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