UCL-RITS / rse-classwork-2020

4 stars 113 forks source link

Refactoring - Part 2 #167

Open ageorgou opened 3 years ago

ageorgou commented 3 years ago

This follows on from #166.

Stage 2: Using a Person Class

We will now look at at how to represent and manipulate the person data with our own Person class.

Instead of each person being a dictionary, we will represent them with the class that has methods for dealing with the connections. We will restructure our code so that the functions become methods of the class. You may also wish to refer to the course notes on object-oriented design.

One example of the starting point for the structure is the file initial_person_class.py. We have implemented some methods for these classes, but not everything that is required (the remaining methods have pass instead of actual code).

Your task:

  1. You should already have the files from the previous part.
  2. Fill in the remaining code in initial_person_class.py so that the file works as before.
  3. Run the file to make sure the assertions are still satisfied.
  4. Commit your changes.