forked from devpro-br/lista-de-exercicios-python-brasil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
134 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
49 changes: 49 additions & 0 deletions
49
secao_04_exercicios_lista/ex_13_media_de_temperaturas_anual.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
""" | ||
Exercício 13 da seção de listas da Python Brasil: | ||
https://wiki.python.org.br/ExerciciosListas | ||
Faça um programa que receba a temperatura média de cada mês do ano e armazene-as em uma lista. | ||
Após isto, calcule e MOSTRE A MÉDIA ANUAL das temperaturas e MOSTRE TODAS AS TEMPERATURAS ACIMA DA MÉDIA ANUAL, | ||
e em que mês elas ocorreram (mostrar o mês por extenso: 1 – Janeiro, 2 – Fevereiro, . . . ). | ||
-as temperaturas só serão dadas em inteiro | ||
-todos os meses do ano serão passados à funçao, começando de janeiro e terminando em dezembro. | ||
Todos seguidos de sua temperatura mensal | ||
(Funçoês recomendadas para estudo: | ||
- .ljust() | ||
- enumerate() | ||
- sum() | ||
- len() | ||
>>> from secao_04_exercicios_lista import ex_13_media_de_temperaturas_anual | ||
>>> meses_vs_temperaturas = ['25', '33', '19', '16', '15', '20', '25', '29', '25', '27', '33', '30'] | ||
>>> ex_13_media_de_temperaturas_anual.input = lambda k: meses_vs_temperaturas.pop() | ||
>>> ex_13_media_de_temperaturas_anual.temperaturas_acima_da_media() | ||
Média anual: 24.75 Graus | ||
1 - Janeiro: 30° | ||
2 - Fevereiro: 33° | ||
3 - Março: 27° | ||
4 - Abril: 25° | ||
5 - Maio: 29° | ||
6 - Junho: 25° | ||
11 - Novembro: 33° | ||
12 - Dezembro: 25° | ||
>>> meses_vs_temperaturas = ['25', '33', '19', '16', '15', '20', '25', '29', '25', '27', '33', '35'] | ||
>>> ex_13_media_de_temperaturas_anual.input = lambda k: meses_vs_temperaturas.pop() | ||
>>> ex_13_media_de_temperaturas_anual.temperaturas_acima_da_media() | ||
Média anual: 25.17 Graus | ||
1 - Janeiro: 35° | ||
2 - Fevereiro: 33° | ||
3 - Março: 27° | ||
5 - Maio: 29° | ||
11 - Novembro: 33° | ||
""" | ||
|
||
|
||
def temperaturas_acima_da_media(): | ||
"""Escreva aqui sua solução: """ | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
""" | ||
Exercício 02 da seção de listas da Python Brasil: | ||
https://wiki.python.org.br/ExerciciosComStrings | ||
Faça um programa que mostre o nome do usuário de trás para frente utilizando somente | ||
letras maiúsculas. Dica: lembre−se que ao informar o nome o usuário pode digitar | ||
letras maiúsculas ou minúsculas. | ||
>>> inversor('lucca') | ||
'ACCUL' | ||
>>> inversor('douglas') | ||
'SALGUOD' | ||
>>> inversor('TaTIana') | ||
'ANAITAT' | ||
>>> inversor('MARIa') | ||
'AIRAM' | ||
""" | ||
|
||
|
||
def inversor(nome: str) -> str: | ||
""" Escreva seu código aqui embaixo """ |
37 changes: 37 additions & 0 deletions
37
secao_06_exercicios_strings/ex_05_nome_vertical_escada_invertida.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
""" | ||
Exercício 05 da seção de strings da Python Brasil: | ||
https://wiki.python.org.br/ExerciciosComStrings | ||
Nome na vertical em escada invertida. Altere o programa anterior de modo que a escada seja invertida. | ||
>>> inverter_escada('CAMARGUINHO') | ||
CAMARGUINHO | ||
CAMARGUINH | ||
CAMARGUIN | ||
CAMARGUI | ||
CAMARGU | ||
CAMARG | ||
CAMAR | ||
CAMA | ||
CAM | ||
CA | ||
C | ||
>>> inverter_escada('ENZO_PASCOAL') | ||
ENZO_PASCOAL | ||
ENZO_PASCOA | ||
ENZO_PASCO | ||
ENZO_PASC | ||
ENZO_PAS | ||
ENZO_PA | ||
ENZO_P | ||
ENZO_ | ||
ENZO | ||
ENZ | ||
EN | ||
E | ||
""" | ||
|
||
|
||
def inverter_escada(nome:str): | ||
"""Escreva aqui em baixo a sua solução""" |