Skip to content

Instantly share code, notes, and snippets.

@Mdslino
Last active June 5, 2017 16:07
Show Gist options
  • Save Mdslino/30d016264c3c4c4306aacad536227585 to your computer and use it in GitHub Desktop.
Save Mdslino/30d016264c3c4c4306aacad536227585 to your computer and use it in GitHub Desktop.
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