0% found this document useful (0 votes)
143 views

Computer Science Project

This document is a student project on data management of students at Mayoor School in Ajmer, India. It was created by Lakshit Sharma, an 11th grade science student, and submitted to their teacher Bajrang Sharma. The project includes an acknowledgements section thanking those who supported the project, a certificate confirming completion of the project, Python source code to manage a student list through various functions, and sections outlining the hardware and software requirements.

Uploaded by

Lakshit Sharma
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
143 views

Computer Science Project

This document is a student project on data management of students at Mayoor School in Ajmer, India. It was created by Lakshit Sharma, an 11th grade science student, and submitted to their teacher Bajrang Sharma. The project includes an acknowledgements section thanking those who supported the project, a certificate confirming completion of the project, Python source code to manage a student list through various functions, and sections outlining the hardware and software requirements.

Uploaded by

Lakshit Sharma
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

MAYOOR SCHOOL AJMER

Computer Science Project


STUDENTS DATA MANAGEMENT

PROJECT PREPARED BY:


Name : Lakshit Sharma
Class : XI – Science
Roll no : 9657
Session : 2021-22

Submitted to : Sir Bajrang Sharma


Table of Contents

Certificate
Acknowledgement
Coding
Requirements
Biblography
Acknowledgement

We thank our Computer Science teacher Mr.

Bajrang Sharma for guidance and support. We also

thank our Principal Mr. Adhiraj Singh. We would

also like to thank our parents for encouraging us

during the course of this project. Finally, we would

like to undertake this project.


Certificate

This is to certify that Lakshit Sharma of

class XI – Science, Mayoor School, Ajmer

have successfully completed their project in

Computer Science for the AISSCE as

prescribed by CBSE in the year 2021-22.

Date : 31-1-22
Source Code

import os

import

platform

global studentlist

studentlist = ["Akshit Yadav", "Kevin Foote", "Lakshit Sharma", "Nayan Daryani"]

def studentmanagement():

print("\n Welcome to Mayoor School's Student Management

System\n") print("[Choice 1: List of Student]")

print("[Choice 2: Add New

Student]") print("[Choice 3:

Search Student]")
print("[Choice 4: Delete Student]")

try:

x = int(input("Enter a choice:

")) except ValueError:

exit("\nHy! This is not a Number")

else:

print("\n")

if(x==1):

print("Student List")

for students in studentlist:

print(format(students))

elif(x==2):

studentnew = input("Enter New

Student: ") if(studentnew in studentlist):

print("This Student is Already In The Table".format(studentnew))

else:

studentlist.append(studentnew)

print("New Student is added in the

List!".format(studentnew)) for students in studentlist:

print(format(students))

elif(x==3):

studentsearch = input("Choose Student Name To

Search: ") if(studentsearch in studentlist):

print(format(studentsearch),"Is found in the list!")

else:

print("There is No Student of this name in the list".format(studentsearch))


elif(x==4):

studentdelete = input("Choose a Student Name To

Delete: ") if(studentdelete in studentlist):

studentlist.remove(studentdelet

e) for students in studentlist:

print(format(students))

else:

print("There is No Student of this name.".format(studentdelete))

elif(x < 1 or x > 4):

print("Please Enter Valid Choice")


studentmanagement()

def continueag():

runagain = input("Want to continue the process

yes/no?: ") if(runagain.lower() == 'yes'):

if(platform.system() ==

"Windows"):

print(os.system('cls'))

else:

print(os.system('clear'

)) studentmanagement()

continueag()

else:

quit()

continueag()
REQUIREMENTS

HARDWARE REQUIRED
 Printer, to print the required documents of
the project.
 Processor : Any RAM
: Min 256 MB
 Hard-disk : 512MB.

SOFTWARE REQUIRED
Operating system : Windows 10
Python IDLE
Ms word, for presentation of output.
BIBLIOGRAPHY

1. Learning Python

2. Youtube

3. Quora

4. Help option in Python

5. http//www.geeksforgeeks.com

You might also like