write a python programme to find the average of marks
Answers
Answered by
0
Answer:
Read marks of five subjects in some variables say S1, S2, S3, S4 and S5.
Apply the formula for finding sum i.e. total = S1 + S2 + S3 + S4 + S5.
Apply the formula to find average using above total i.e. average = total / 5.
Apply the formula for finding percentage i.e. percentage = (average / 500) * 100.
Explanation:
Hope it helps you
Similar questions