Write a python program to input the marks of a student. If it is in between 90-100, then print "A Grade" and if not, then print "B Grade".
Answers
Answered by
3
Answer:
grade = float(input(" Please enter The Grade: "))
if(grade >= 90):
print("A Grade")
elif(grade >= 80):
print("B Grade")
elif(grade >= 70):
print("C Grade")
elif(grade >= 60):
print("D Grade")
elif(grade >= 40):
print("E Grade")
else:
print("Fail”)
Explanation:
hope it helps
Similar questions