Prev | Index | NextSummary of OO Concepts in Python
- An object is just a bundle of data with a set of controls (methods) to access and manipulate the data
- Classes are the blueprint of an object
- Methods are just Python functions defined within classes
- ...whose first argument is the object itself
- Modules group related classes
An Introduction To Python