Question: Task 7: Course Registration Write a program that will allow students to select one or more of the offered courses, for which they want to
Task 7: Course Registration Write a program that will allow students to select one or more of the offered courses, for which they want to register Here are the. details: - The program will ask the user to enter their first and last name, and student number, and will save the information provided in either a List or a Dictionary (your choice). - Next, the program will display to the user 4 available courses: a course code and course name for each course. Use a dictionary to preload this information into the program. - When prompted, the user will enter course codes for each of the courses he/she wants to register for, as a comma-separated list of course code values (e.g. PROG1783, INFO8025, PROG2267). (Hint: use the string split() method to separate the course codes string user entered into a List of substrings: use comma as the separator) - The program will then display the following as its output: 1) student's information: full name and student number 2) a list of the selected (registered for) courses; the course name and course code for each - Input validation is not required for this task. - Document the program by adding header and inline comments. - All the code prompts and output, and comments need to be well-presented, professionally written and to follow the good programming practices ditcussed in class
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
