Computer Science, asked by debalinanag07, 6 months ago

Write a Python Program to take in the marks of 5 subjects and display the grade on the basis of

follow criteria:

Average Grade

>=90 A

80 to 89 B

70 to 79 C
50 TO 69 D

Less than 50 F​

Answers

Answered by gaursantosh38
0

Answer:

D

Explanation:

I have done this to take piont

Answered by PremAryan001
2

grade = eval(input("Enter your number grade (0-100): "))

if grade >= 90:

print("You got an A! :) ")

elif grade >= 80:

print("You got a B!")

elif grade >= 70:

print("You got a C.")

elif grade >= 60:

print("You got a D...")

else:

print("You got an F. :( ")

Similar questions