Created
April 14, 2018 00:15
-
-
Save Mdslino/f2097b0324cac5061c06493715940f4a to your computer and use it in GitHub Desktop.
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
from statistics import mean | |
meses = [ | |
'Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', | |
'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro' | |
] | |
medias = {} | |
for mes in meses: | |
medias[mes] = float(input(f'Digite a média para o mês de {mes}: ')) | |
media_anual = mean(medias.values()) | |
print(f'A média anual é de {media_anual}°C') | |
for key, value in medias.items(): | |
if value > media_anual: | |
print( | |
f'O mês de {key} teve uma média mensal de {value}°C, maior que a média anual de {media_anual:.2f}°C' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment