Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelopoars/ed4b793169f5a28052d0b0b9cb6a883c to your computer and use it in GitHub Desktop.
Save marcelopoars/ed4b793169f5a28052d0b0b9cb6a883c to your computer and use it in GitHub Desktop.
ptytho-ex-01
'''
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