STUDENT RESULT MANAGEMENT
SYSTEM
• Name => Shahid Ansari
• Class => VIII
• Section => A
• Roll No. => 22
INTRODUCTION
• This project is based on Python programming.
• It helps to calculate a student's total marks, percentage, and
grade using basic coding concepts.
OBJECTIVE OF THE PROJECT
• To understand Python basics
• To use variables and input/output
• To apply arithmetic operations
• To use conditional statements
TOOLS / PROGRAMMING LANGUAGE
USED
• Programming Language: Python
• Device Used: Laptop
• PyCharm Integrated Development Environment (IDE) .
FLOWCHART OF THE PROGRAM
• Start → Input Name & Marks → Calculate Total &
Percentage →
• Check Conditions → Display Grade → End
SOURCE CODE
• # Input student details • # Grade calculation
• name = input("Enter student name: ")
• # Input marks • if percentage >= 80:
• mark1 = float(input("Enter marks of Subject 1: ")) • print("Grade: A")
• elif percentage >= 60:
• mark2 = float(input("Enter marks of Subject 2: "))
• print("Grade: B")
• mark3 = float(input("Enter marks of Subject 3: ")) • elif percentage >= 40:
• # Calculate total and percentage • print("Grade: C")
• total = mark1 + mark2 + mark3 • else:
• percentage = total / 3 • print("Grade: Fail")
• # Display results
• print("\n--- Student Result ---")
• print("Name:", name)
• print("Total Marks:", total)
• print("Percentage:", percentage)
OUTPUT