Skip to content

Chapter 3: Object Model and Binding

This chapter explores Python's object model in depth, covering how names bind to objects, CPython implementation details, numeric and string internals, and practical patterns for writing Pythonic code.

3.1 Language Foundations

3.2 Python's Object Model

3.3 Names, Binding, and Assignment

3.4 CPython Implementation Details

3.5 Advanced Numeric Internals

3.6 Advanced String Internals

3.7 Practical Implications