January 2022
Beginner to intermediate
416 pages
10h 21m
English
This book is about a software development technique called object-oriented programming (OOP) and how it can be used with Python. Before OOP, programmers used an approach known as procedural programming, also called structured programming, which involves building a set of functions (procedures) and passing data around through calls to those functions. The OOP paradigm gives programmers an efficient way to combine code and data into cohesive units that are often highly reusable.
In preparation for writing this book, I extensively researched existing literature and videos, looking specifically at the approaches taken to explain this ...