reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

Code Fellows Python 401

Read: 04 - Variables, Recursion, & Pytest

Classes and Objects

Classes are a template to create your objects. Objects are an encapsulation of variables and functions into a single entity. Objects get their variables and functions from classes.

Thinking Recursively

The typical structure of a recursive algorithm. If the current problem represents a simple case, solve it. If not, divide it into subproblems and apply the same strategy to them.

Pytest Fixtures and Coverage

Bookmark and Review