Created
April 23, 2020 00:26
-
-
Save steffanydev/8a6bebc1320a01094e8fc4cff7b7be03 to your computer and use it in GitHub Desktop.
Crie um programa que mostre na tela todos os números pares que estão no intervalo entre 1 e 50 utilizando a estrutura de repetição FOR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for par in range(1, 51): | |
| if par % 2 == 0: | |
| print(par) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment