Skip to content

Commit

Permalink
Create nota.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinsJessica authored Mar 22, 2023
1 parent 6b7ca6c commit ad66b08
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions nota.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Nota1 = float(input("nota"))
Nota2 = float(input("nota"))
Nota3 = float(input("nota"))
media =((Nota1+Nota2+Nota3)/3)

print(media)
if (media >=6):
print("Aluno aprovado")
else:
print("Aluno reprovado")

0 comments on commit ad66b08

Please sign in to comment.