This repository shows practical coding tasks that I have done using the python programming language.
💻 💻
This outlines the CRUD matrix for the task: CREATE, READ, UPDATE, DELETE.
This program is designed to create a task management system for subjects that are done by a given student.
The program allows for the management of student, professor and mentor details. The CRUD operations are alo accounted for, within the program. The courses can be created and deleted by the professor in order to update any changes to the courses that a student is enrolled on.
These are the classes used within the program:
- Student
- Professor
- Mentor
- Person
- Course
- Address
- Enrollment
This is an example function that is used within the program to initials the attributes of the Student class.
def __init__(self, subject_id, subject_title, progression):
self.subject_id = subject_id
self.subject_title = subject_title
self.progression = progression- The IDE - Visual Studio Code
- Windows Power Shell
- Python
This is a preview of the code: (https://github.com/JiovaniBoJ/codingTasks/assets/165221953/e05bd76b-38e4-4bde-a0c1-39311e89d1f0)