Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
self | OOP Concepts
In-Depth Python OOP
course content

Зміст курсу

In-Depth Python OOP

self

self is the first argument in methods, which name is agreed upon by Python programmers. When an instance executes a method, it automatically passes itself as the first argument. Let's consider the User class we created earlier as an example:

The __init__ magic method takes the arguments self, name, surname, and age. In the given example, when we create the bob instance, these arguments are passed as values.

Let's use the print() function to examine the passed arguments:

In the given example, it is evident that the global variable bob and the self parameter inside the __init__ method refer to the same instance. This illustrates the convention in Python where methods receive the instance as the first argument, conventionally named self.

By following this convention, methods have access to the instance attributes and can perform operations or access values specific to that particular instance.

Note

In Python, the self parameter serves as the first argument in methods and represents the instance object that calls the method. By convention, the name self is used, although it could be any valid variable name. This parameter provides access to the attributes and methods of the instance, allowing the method to interact with and manipulate its own data.

For better understanding, let's create a regular function and name it init, which will perform the same actions but will be called separately.

The init function takes the first argument as an instance and then assigns the received arguments to it. Similarly, __init__ works when creating a class, and self is a necessary element for creating different methods, which we will discuss further.

Все було зрозуміло?

Секція 1. Розділ 6
We're sorry to hear that something went wrong. What happened?
some-alt