What is __ init __( self in python?

__init__ is the constructor for a class. The self parameter refers to the instance of the object (like this in C++). class Point: def __init__(self, x, y): self._x = x self._y = y. The __init__ method gets called after memory for the object is allocated: x = Point(1,2)21 Şub 2022

Sizin İçin Seçtik  How can I tell if server-side is rendered?

Leave a Reply

Your email address will not be published. Required fields are marked *