We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e005e commit e296e0bCopy full SHA for e296e0b
ex007.py
@@ -1,8 +1,10 @@
1
+#Arithmetic Mean
2
#07- Develop a program that reads a student's two grades, calculates and displays their average.
3
first_note = float(input('Enter your first note:'))
4
second_note = float(input('Enter your second note:'))
5
print(f' If your first note is {first_note} and your second note is {second_note}.\n You avarege will be {(first_note+second_note)/2}.')
6
7
+#Média Aritmética.
8
'''#7: Desenvolva um programa que leia as duas notas de um aluno, calcule e mostre a sua média.
9
print('Vamos calcular sua média?')
10
primeira_nota = float(input('Digite a primeira nota:'))
0 commit comments