Project File Student Management System
Project File Student Management System
KARIMNAGAR
SUBJECT: COMPUTER SCIENCE
(PYTHON)
TOPIC: - student
management system
DONE BY
1) K.ABHISHEK, ROLL NO:- 14
2) M.D. SAMEER, ROLL NO:- 26
CLASS: - XI
1
CERTIFICATE
This is to certify that K. Abhishek (Roll no. 14) and
M.D. Sameer (Roll no.26) of class XI have successfully
completed the computer science (083) project laid down
under the regulations of CBSE entitled
Signature: Signature:
2
TABLE OF CONTENTS
1 ACKNOWLEDGEMENT 4
2 INTRODUCTION 5
3 OBJECTIVES 6
4 PROPOSED SYSTEM 7
6 OUTPUT 12-13
7 BIBILOGRAPHY 14
3
Acknowledgement
Apart from the efforts of us, the success of any project depends
largely on the encouragement and guidelines of many others.
We take this opportunity to express our gratitude to the people
who have been instrumental in the successful completion of this
project.
Last but not the least we would like to thank all those who had
helped directly and indirectly towards the completion of this
project.
4
INTRODUCTION
Simple Student Management System project is written in
Python. The project file contains a python script (student.py).
This is a simple console based system which is very easy to
understand and use. Talking about the system, it contains
basic functions which include Add students, view students,
search students and remove the student. In this mini project,
there is no such login system. This means he/she can use all
those available features easily without any restriction. It is too
easy to use, he/she can check the total student’s record.
5
Objectives
Add Students
List all students
Search students
Remove Students
6
PROPOSED SYSTEM
Our proposed system, contains basic functions which
include Add students, view students, search students and
remove the student. In this mini project, there is no such login
system. This means he/she can use all those available features
easily without any restriction. It is too easy to use, he/she can
check the total student’s record. While adding the
students, the user only has to enter his/her name then the
system adds the record and displays to the user. And the user
can view all these students lists from the view section.
In this Simple Student Management, the user can also search
for student’s name in order to know whether the student’s
record exists in the system or not. This simple console based
Student Management system provides the simplest
management of student’s list. In short, this projects mainly
focus on CRUD. There is no database connection or neither
any external text nor other files used in this mini project to
save user’s data permanently.
7
PROGRAM CODE
import os
import platform
x = "#" * 30
y = "=" * 28
bye = "\n {}\n# {} #\n# ===> Brought To You By <=== #\n# ===> code-
projects.org <=== #\n# {} #\n {}".format(x, y, y, x) # Will Print GoodBye
Message
print("""
------------------------------------------------------
|======================================================|
|======================================================|
------------------------------------------------------
8
Enter 2 : To Add New Student
""")
except ValueError:
else:
print("List Students\n")
print("=> {}".format(students))
elif(userInput == 2): #This Option Will Add New Student In The List
9
print("\nThis Student {} Already In The
Database".format(newStd)) #Error Message
else:
listStd.append(newStd)
print("=> {}".format(students))
elif(userInput == 3): #This Option Will Search Student From The List
else:
elif(userInput == 4): #This Option Will Remove Student From The List
listStd.remove(rmStd)
10
print("=> {}".format(students))
else:
manageStudent()
if(runAgn.lower() == 'y'):
print(os.system('cls'))
else:
print(os.system('clear'))
manageStudent()
runAgain()
else:
runAgain()
11
OUTPUT
12
13
BIBILOGRAPHY
14