This tutorial will teach you Student Marks Calculation System Using python console application.in order to calculate the grade using following condition
Input student marks to calculating the total,grade. the grade is awared as “Pass” when the average is more than 50.otherwise grade is fail.
marks1 = int(input("Enter Your Marks 1 "))
marks2 = int(input("Enter Your Marks 2 "))
marks3 = int(input("Enter Your Marks 3 "))
tot = marks1 + marks2 + marks3
print(tot)
avg = tot/3
print(avg)
if(avg > 50 ) :
    print("Pass")
else :
    print("Fail")
 
Inventory Management POS systems are now an essential part of modern businesses such as bookshops,…
If you're just beginning to learn Java GUI programming creating an Water System Calculator is a fantastic project for…
GitHub is a powerful tool used by teams and developers around the globe. This guide is…
It's like having a super-smart buddy that is always there to help you write stories,…
The UK is known for its rich history, diverse culture, and most of all its…
Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…