Created
June 2, 2023 22:41
-
-
Save marcelopoars/ed4b793169f5a28052d0b0b9cb6a883c to your computer and use it in GitHub Desktop.
ptytho-ex-01
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
''' | |
01 - Faça um Programa que leia um vetor de 5 números inteiros e mostre-os. | |
''' | |
numbers = [1, 12, 78, 44, 23] | |
for number in numbers: | |
print(number) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment