Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Project Descrpiton You have learned quite a lot about the basics of Python programming. In this project, you will integrate what you have learned to

Project Descrpiton

You have learned quite a lot about the basics of Python programming. In this project, you will integrate what you have learned to develop a larger program.This program creates a class registration system. It allows students to log in to add courses, drop courses and list courses they have registered for.This program has 5 functions in 2 modules: a student module and a main module. You must define the following functions image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedin the student module.

Function add..course(id, calist, list, m.list) drop..course(id, Calist, La list) Specification This function adds a student to a course. It has four parameters: id is the ID of the student to be added; Sutist is the list of courses offered; Latest is the list of class rosters; Thatiate is the list of maximum class sizes. This function asks user to enter the course he/she wants to add. If the course is not offered, display error message and stop. If the course is full, display error message and stop. If student already registered for the course, display error message and stop. Add student ID to the course's roster and display a message if there is no problem. This function has no return value. This function drops a student from a course. It has three parameters: id is the ID of the student to be dropped; s list is the list of courses offered to is the list of class rosters. This function asks user to enter the course he/she wants to drop. If the course is not offered, display error message and stop. If the student is not enrolled in that course, display error message and stop. Remove student ID from the course's roster and display a message if there is no problem. This function has no return value. This function displays and counts courses a student has registered for. It has three parameters: id is the ID of the student; s liat is the list of courses offered; halist is the list of class rosters. This function displays the number of courses the student has registered for and which courses they are. This function has no return value. list.courses id, c.list calist) You must define the following functions in the main module. Function login(id, sulist) Specification This function allows a student to log in. It has two parameters: id and satiat, which is the student list. This function asks user to enter PIN. If the ID and PIN combination is in Batista, display message of verification and return True. Otherwise, display error message and return False. main This function manages the whole registration system. It has no parameter. It creates 4 lists to store data: student list, course list, maximum class size list and roster list. It uses a loop to serve multiple students. Inside the loop, ask user to enter ID, and call the login function to verify student's identity. If login is successful, use a loop to allow student choose to add courses, drop courses or list courses the student has registered for. This function has no return value. This program uses a few lists to store data. To make grading easier, data will be added to these lists at the beginning of the main function. studentatist - [('1001', '111'), ('1002', '222'), ('1003', 1333'), ('1004', '444')] sursstist = ['CSC101', 'CSC102', 'CSC103'] max.Bizetist = [3, 2, 1] rasteretist = [['1004', '1003'], ['1001'], ['1002']] There are 4 students in this program. ID and PIN of students are stored as tuples in student liat. The first element of each tuple is student ID, while the second element is PIN. Three courses are offered. The course codes are stored in coures atiet. These courses are CSC101, CSC102 and CSC103. The maximum class size of the courses offered are stored in maxigebiet The max sizes of CSC101, CSC102 and CSC103 are 3, 2 and 1, respectively. Rosters of the three classes offered are stored as three lists, which are three elements of resten list, which is actually a list of lists. Students 1004 and 1003 are enrolled in CSC101. Student 1001 is enrolled in CSC102. Student 1002 is enrolled in CSC103. The program should have a loop to create multiple student sessions. In each session, ask user to enter ID, then call the login function to verify the student's identity. If login is successful, use a loop to allow the student to add courses, drop courses and list courses registered. The following is an example. Enter ID to log in, or 0 to quit: 1234 Enter PIN: 123 ID or PIN incorrect Enter ID to log in, or 0 to quit: 1001 Enter PIN: 111 ID and PIN verified Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC121 Course not found Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC102 You are already enrolled in that course. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC103 Course already full. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC101 Course added Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 2 Enter course you want to drop: CSC121 Course not found Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 2 Enter course you want to drop: CSC103 You are not enrolled in that course. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 2 Enter course you want to drop: CSC102 Course dropped Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC101 Total number: 1 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC102 Course added Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC101 CSC102 Total number: 2 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 0 Session ended. Enter ID to log in, or 0 to quit: 1002 Enter PIN: 222 ID and PIN verified Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC103 Total number: 1 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC101 Course already full. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC102 Course added Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC102 CSC103 Total number: 2 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 0 Session ended. Enter ID to log in, or 0 to quit: 0 Function add..course(id, calist, list, m.list) drop..course(id, Calist, La list) Specification This function adds a student to a course. It has four parameters: id is the ID of the student to be added; Sutist is the list of courses offered; Latest is the list of class rosters; Thatiate is the list of maximum class sizes. This function asks user to enter the course he/she wants to add. If the course is not offered, display error message and stop. If the course is full, display error message and stop. If student already registered for the course, display error message and stop. Add student ID to the course's roster and display a message if there is no problem. This function has no return value. This function drops a student from a course. It has three parameters: id is the ID of the student to be dropped; s list is the list of courses offered to is the list of class rosters. This function asks user to enter the course he/she wants to drop. If the course is not offered, display error message and stop. If the student is not enrolled in that course, display error message and stop. Remove student ID from the course's roster and display a message if there is no problem. This function has no return value. This function displays and counts courses a student has registered for. It has three parameters: id is the ID of the student; s liat is the list of courses offered; halist is the list of class rosters. This function displays the number of courses the student has registered for and which courses they are. This function has no return value. list.courses id, c.list calist) You must define the following functions in the main module. Function login(id, sulist) Specification This function allows a student to log in. It has two parameters: id and satiat, which is the student list. This function asks user to enter PIN. If the ID and PIN combination is in Batista, display message of verification and return True. Otherwise, display error message and return False. main This function manages the whole registration system. It has no parameter. It creates 4 lists to store data: student list, course list, maximum class size list and roster list. It uses a loop to serve multiple students. Inside the loop, ask user to enter ID, and call the login function to verify student's identity. If login is successful, use a loop to allow student choose to add courses, drop courses or list courses the student has registered for. This function has no return value. This program uses a few lists to store data. To make grading easier, data will be added to these lists at the beginning of the main function. studentatist - [('1001', '111'), ('1002', '222'), ('1003', 1333'), ('1004', '444')] sursstist = ['CSC101', 'CSC102', 'CSC103'] max.Bizetist = [3, 2, 1] rasteretist = [['1004', '1003'], ['1001'], ['1002']] There are 4 students in this program. ID and PIN of students are stored as tuples in student liat. The first element of each tuple is student ID, while the second element is PIN. Three courses are offered. The course codes are stored in coures atiet. These courses are CSC101, CSC102 and CSC103. The maximum class size of the courses offered are stored in maxigebiet The max sizes of CSC101, CSC102 and CSC103 are 3, 2 and 1, respectively. Rosters of the three classes offered are stored as three lists, which are three elements of resten list, which is actually a list of lists. Students 1004 and 1003 are enrolled in CSC101. Student 1001 is enrolled in CSC102. Student 1002 is enrolled in CSC103. The program should have a loop to create multiple student sessions. In each session, ask user to enter ID, then call the login function to verify the student's identity. If login is successful, use a loop to allow the student to add courses, drop courses and list courses registered. The following is an example. Enter ID to log in, or 0 to quit: 1234 Enter PIN: 123 ID or PIN incorrect Enter ID to log in, or 0 to quit: 1001 Enter PIN: 111 ID and PIN verified Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC121 Course not found Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC102 You are already enrolled in that course. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC103 Course already full. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC101 Course added Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 2 Enter course you want to drop: CSC121 Course not found Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 2 Enter course you want to drop: CSC103 You are not enrolled in that course. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 2 Enter course you want to drop: CSC102 Course dropped Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC101 Total number: 1 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC102 Course added Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC101 CSC102 Total number: 2 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 0 Session ended. Enter ID to log in, or 0 to quit: 1002 Enter PIN: 222 ID and PIN verified Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC103 Total number: 1 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC101 Course already full. Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 1 Enter course you want to add: CSC102 Course added Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 3 Courses registered: CSC102 CSC103 Total number: 2 Enter 1 to add course, 2 to drop course, 3 to list courses, 0 to exit: 0 Session ended. Enter ID to log in, or 0 to quit: 0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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