Write a program in python to enter marks in five subjects and find the total and percentage?
Answers
Answered by
2
sum=0
for i in range(5):
mrx=float(input("marks : "))
sum=sum+mrx
per=(sum/500)*100
print("Percentage : ",per)
Similar questions