Percentage of Marks in Python || Arithmetic Operation || Python

In this we are going to see a program to Calculate Percentage of Marks in Python Programming Language.


math = int(input("Enter The Marks Of Maths(100 mrks) : "))
phy= int(input("Enter The Marks Of Physics(100 mrks) : "))
chem= int(input("Enter The Marks Of Chemistry(100 mrks) : "))

sum = math + phy + chem
percentage = sum*100/300
print("Percentage Of Student Is : ",percentage)

#Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post