Introduction to Python ProgrammingXYZ Homework Edition

⇩ Download ▾

11.6 Chapter summary

Highlights from this chapter include:

  • Object-oriented programming involves grouping related fields and procedures into objects using data abstraction and encapsulation.
  • Classes define a type of object with attributes and methods.
  • Instances of a class type represent objects and are created using __init__.
  • Attributes may belong to the instance (unique for each instance) or the class (shared by all instances).
  • Instance methods have the first parameter self to access the specific instance.
  • Python uses magic methods to perform "under-the-hood" actions for users. Magic methods always start and end with double underscores.
  • Python allows overloading of existing operators for user-defined classes.
  • Classes can be imported from modules by name or can be renamed using aliases.

At this point, you should be able to write classes that have instance attributes, class attributes, and methods, and import classes from modules. You should also be able to overload operators when defining a class.

Table 11.4 Chapter 11 reference.
ConstructDescription
Class definition class ClassName:   """Docstring"""
__init__ class ClassName:   def __init__(self):     # Initialize attributes
Attributes class ClassName:   class_attr_1 = [value]   class_attr_2 = [value]   def __init__(self):     instance_attr_1 = [value]     instance_attr_2 = [value]     instance_attr_3 = [value]
Methods (instance) class ClassName:   def __init__(self):     instance_attr_1 = [value]     instance_attr_2 = [value]     instance_attr_3 = [value]   def method_1(self, val1, val2):     # Access/change attributes   def method_2(self):     # Access/change attributes
Instances instance_1 = ClassName instance_1.instance_attr_1 = [new value] instance_2 = ClassName instance_2.method_2
Overloaded multiplication operator class ClassName:   # Other methods   def __mul__(self, other):     return ClassName(self.instance_attr_3 * other.instance_attr_3)
Import class from module with alias from class_module import ClassName as ClassAlias

Adapted from Introduction to Python Programming by OpenStax (openstax.org), licensed under CC BY-NC-SA 4.0. Changes were made. License: CC-BY-NC-SA-4.0.

These eBooks are a prerelease and are not yet certified conformant with WCAG 2.1 AA or ADA Title II. Every page is built against an automated accessibility gate, and the published editions will meet ADA Title II requirements when they release in late September 2026. If something is unusable, please tell us.