python

Student Marks Calculation System Using python

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")

 

admin

Recent Posts

Chat with Claude AI Free – Your Super-Smart AI Buddy

It's like having a super-smart buddy that is always there to help you write stories,…

4 days ago

Best Festivals UK 2025 [Free Guide Included]

The UK is known for its rich history, diverse culture, and most of all  its…

7 days ago

Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…

7 days ago

Master Cursor AI Full Guide for Students & Creators

The world is rapidly changing of software development AI-assisted tools for coding have become the main focus. As…

1 week ago

Google Gemini AI Free AI Tool for Students & Creators

Google Gemini AI is among the top talked about developments. What exactly is it? What…

1 week ago

Top 5 Reasons You Should Use Grubby AI Humanizer in 2025

As the need for AI content undetectable humanization software skyrockets with more and more AI…

2 weeks ago