Computer Science, asked by tanishq2106, 2 months ago

Write a program in python to enter marks in five subjects and find the total and percentage?​

Answers

Answered by indiantechsmith
2

sum=0

for i in range(5):

mrx=float(input("marks : "))

sum=sum+mrx

per=(sum/500)*100

print("Percentage : ",per)

Similar questions