English

Schools use the “Student Management Information System” (SMIS) to manage student-related data. This system provides facilities for: recording and maintaining the personal details of students. - Computer Science (Python)

Advertisements
Advertisements

Question

Schools use the “Student Management Information System” (SMIS) to manage student-related data. This system provides facilities for:

  • recording and maintaining the personal details of students.
  • maintaining marks scored in assessments and computing results of students.
  • keeping track of student attendance.
  • managing many other student-related data. Let us automate this process 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 the following format.

Name of School

Student Name: PQR                   Roll No: 99
Class: XI                                     Section: A
Address: Address Line 1
               Address Line 2
City: ABC                                     Pin Code: 999999
Parent's/Guardian's Contact No: 9999999999999

Answer in Brief

Solution

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)
shaalaa.com
Operators in Python
  Is there an error in this question or solution?
Chapter 5: Getting Started with Python - Exercise [Page 119]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 5 Getting Started with Python
Exercise | Q 1 | Page 119
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×