Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#56 #160

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
5 changes: 1 addition & 4 deletions secao_01_estrutura_sequencial/ex_01_alo_mundo.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
"""
Exercício 01 da seção de estrutura sequencial da Python Brasil:
https://wiki.python.org.br/EstruturaSequencial

Escreva um programa que mostre a mensagem "Olá Mundo"

>>> ola_mundo()
Olá Mundo

"""


def ola_mundo():
"""Escreva aqui em baixo a sua solução"""

7 changes: 5 additions & 2 deletions secao_04_exercicios_lista/ex_01_vetor_5_numeros.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@

Faça um Programa que leia um vetor de 5 números inteiros e mostre-os.

>>> ler_5_valores()
>>> from secao_04_exercicios_lista import ex_01_vetor_5_numeros
>>> numeros_vetor=[13, 15, 20, 50, 10]
>>> ex_01_vetor_5_numeros.input = lambda k: numeros_vetor.pop()
>>> ex_01_vetor_5_numeros.ler_5_valores()
[10, 50, 20, 15, 13]

"""


def ler_5_valores():
"""Escreva aqui em baixo a sua solução"""