A PROJECT REPORT
A PROJECT REPORT
ON
HOSPITAL MANAGEMENT SYSTEM
COMPUTER SCIENCE(083)
2023-24
SUBMITTED BY:
YUGANDHAR YUG
11-D
45
..............................
Signature of Teacher/Guide
Name: Mrs. Nidhi Shinde
Designation: PGT (Computer Science)
…………………………
Signature of Student
Name:
Class & Section:
elif a==3:
print('Modify a record')
roll_number = int(input('Enter new 6 digit roll number: '))
if roll_number in student:
name=input('Modify name ')
student[roll_number] = name
print('Record updated')
else:
print('Record not found')
elif a==4:
print('Roll Number','Name')
for roll_number in student:
print(roll_number,'\t',student[roll_number])
else:
print('Choose appropriate option')
SAMPLE OUTPUT
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed1
Enter a record
Enter your roll number: 123456
Enter name: yug
Record added
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed1
Enter a record
Enter your roll number: 123457
Enter name: arsh
Record added
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed4
Roll Number Name
123456 yug
123457 arsh
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed3
Enter roll number: 123457
Modify name harsh
Record updated
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed4
Roll Number Name
123456 yug
123457 harsh
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed2
Delete a record
Enter roll number: 123457
Record deleted
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed4
Roll Number Name
123456 yug
LIMITATIONS OF THE PROJECT
Class Notes