Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Introduction You are going to write a program to build a simple Student Management System using Python. This system can manage all the information

1. Introduction

You are going to write a program to build a simple Student Management System using Python. This system can manage all the information of the students which includes name, student ID, contact number, and age. Users can add new entries to the system, delete certain entries, update certain entries, search for certain entries, save entries to a file, and load entries from a file.

Detailed Specifications

Your program should support the following functionalities:

1.1. Add a new Entry

Your program should ask the user to input the students name, student ID, contact number, and age. The entry will be created and added to the student management

system.

1.2. Delete an Entry

Your program should ask the user to input the student's full name and then be able to delete the corresponding entry in the student management system.

1.3. Update an Entry by Name

Your program should ask the user for the full name and then alter the corresponding entry in the student management system.

1.4. Search for an Entry by Name Your program should ask the user for the students full name and then print the corresponding entry to the screen.

1.5. Display all Your program should print out all the entries inside the student management system to screen.

1.6. Save Your program should save the entries to the file student_info.txt in the given format.

1.7. Load Your program should be able to read all entries from student_info.txt.

1.8. Exit Leave the program.

Please use Python. Thank you.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions