reading-notes

Read: Class 04 summary:

Classes and Objects

class MyClass:
    variable = "blah"

    def function(self):
        print("This is a message inside the class.")

myobjectx = MyClass()

myobjectx.variable

Thinking Recursively in Python:

Python Testing with pytest: Fixtures and Coverage: