Last active
June 5, 2017 16:07
-
-
Save Mdslino/30d016264c3c4c4306aacad536227585 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
listaNotas = [] | |
soma = 0 | |
media = 0 | |
for count in range(10): | |
nota = int(input('Digite as notas: ')) | |
listaNotas.append(nota) | |
soma = soma + nota | |
media = soma / len(listaNotas) | |
for nota in listaNotas: | |
if nota > media: | |
print(nota) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment