Q. Schools use “Student Management Information System” (SMIS) to manage student related data. This system provides facilities for:
![]() |
| cs ncert solution class 11 / ip ncert solution class 11 |
• Recording and maintaining personal details of students.
• Maintaining marks scored in assessments and computing results of students.
• Keeping track of student attendance, and
• Managing many other student-related data in the school.
Let us automate the same step by step.
Identify the personal details of students from your school identity card and write a program to accept these details for all students of your school and display them in this format.
Answer:-
name_of_school = input("Enter tne Name of School:- ")
stu_name = input("Enter the Name of Student:- ")
roll = int(input("Enter the Roll number:- "))
clas = input("Enter the Class:- ")
address = input("Enter the Address:- ")
city = input("Enter the City name:- ")
pin = int(input("Enter the Pin Code:- "))
phone = int(input("Enter the Parent Phone number:- "))
print ()
print ("-"*60)
print ("| ", name_of_school)
print ("|")
print ("| Student Name:- ", stu_name, " Roll NO:- ", roll)
print ("| Address:- ", address)
print ("|")
print ("| City:- ", city, " Pin Code:- ", pin)
print ("| Prent's/ Guardian's Contact No:- ", phone)
print ("-"*60)

Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )