Classes and Objects
Class Definition
A class is a blueprint for creating objects (instances).
It defines the attributes and behaviors that the objects created from it will have.
Example of an empty class, just defining the structure:
Constructor
The constructor method __init__
is a special method in Python classes.
It is automatically called when a new object (instance) of the class is created.
This method is used to initialize the attributes of the object.
Instance vs. Class Variables
A class can have instance variables (specific to each object) and class variables (shared by all objects of the class).
Each instance of a class can have its own set of attributes, but class variables are shared among all instances.
Object Creation
Once a class is defined, you can create an object (or instance) of that class.
To create an object, call the class name and pass the arguments required by the constructor.
Methods
A method is a function defined inside a class that operates on instances of that class.
Methods must always include self as the first parameter, which represents the instance of the class.
Calling the method:
Output:
Inheritance
Inheritance allows one class (the child class) to inherit the attributes and methods from another class (the parent class).
This is useful when you want to create a new class that has the same behavior as an existing class, with additional or modified behavior.
Calling the method:
Output:
Class Methods and Static Methods
Class Method is a method that is bound to the class, not the instance. It is often used to modify the state of the class.
Static Method is a method that doesn't access or modify the class state or instance state. It's a general utility function that could be placed within the class for organizational purposes.
Example:
Calling the methods:
Output:
Magic Methods
Python supports special methods that are commonly known as "magic" or "dunder" methods because they are surrounded by double underscores __
.
These methods allow you to define custom behavior for operations like object creation, string representation, and arithmetic operations.
Example: