--- id: 5e9a093a74c4063ca6f7c156 title: Conhecer os arrays booleanos do NumPy challengeType: 11 videoId: N1ttsMmcVMM bilibiliIds: aid: 208091324 bvid: BV1Qh411p7V8 cid: 409012711 dashedName: numpy-boolean-arrays --- # --description-- *Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.* Mais recursos: - [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy) - [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb) # --question-- ## --text-- O que será impresso pelo código a seguir? ```py a = np.arange(5) print(a <= 3) ``` ## --answers-- ```python [False, False, False, False, True] ``` --- ```python [5] ``` --- ```python [0, 1, 2, 3] ``` --- ```python [True, True, True, True, False] ``` ## --video-solution-- 4