Calcuate your Marks percentage with python Project -2

Find your percentage ____


Every Student  in this world has the tension about this percentage in the exams , So try this program to find ut your percentage





Eng=int(input("Write your mark for English :-  "))
Hindi=int(input("write marks for Hindi :- "))
Maths=int(input("write your marks for Maths:- "))
Sci=int(input("Write your marks in Science:- "))
Ssc=int( input("Write your marks in Social science:- "))
num2=input("Write total marks:- ")
num1 =(Eng +Hindi+Maths+Sci+Ssc)
num3=int(num1)/int(num2)*100
print("Your Percentage must be = ", num3,"%")

0 Comments