0
What is the missing
If the total is 98 Output Enter prelim grade Enter midterm grade Enter tentative grade The grade 98 is with highest honor https://code.sololearn.com/cB7pZ8ouvEVr/?ref=app
3 Answers
+ 2
if fgrade>=98:
print(f"\nThe grade {fgrade} is with Higest honor!!!")
#like this, use fstring, if you are trying to print 98 grade in output.. !
+ 5
Bacani Rocelle M. ,
in some input cases you may get a result with many decimal places like:
input is: 93, 87, 97 => result is 92.33333333333333.
to avoid this you should limit the number of decimal places by additionally using a precission argument. if we like to get only 2 decimal places we can use:
...
print(f"\nThe grade {fgrade:.2f} is with ... !!!")
^^
...
0
Bro I think it's right. Because you have mentioned in code that >=98. So, your program is completely alright.