0
if the wrong note is typed twice and it goes to the second note
a = int(input('digite a primeira nota: \n'))
if a > 10:
a = int(input('Nota invalida digite novamente: \n'))
b = int(input('digite a segunda nota: \n'))
if b > 10:
b = int(input('Nota invalida digite novamente: \n'))
c = int(input('digite a terceira nota: \n'))
if c > 10:
c = int(input('Nota invalida digite novamente: \n'))
d = int(input('digite a quarta nota: \n'))
if d > 10:
d = int(input('Nota invalida digite novamente: \n'))
media= (a + b + c + d) / 4
if media < 11:
print('a media é : {}\n'.format(media))
else:
print('uma ou mais notas não sao validas')