Answer
__init__
Work Step by Step
A class provides a special method, __init__.
This method, known as an initializer, is invoked to initialize a new object’s state when it is created.
An initializer can perform any action, but initializers are designed to perform initializing actions, such as creating an object’s data fields with initial values. Python uses the following syntax to define a class:
class ClassName:
$ $ $ $ $ $ $ $ initializer
$ $ $ $ $ $ $ $ methods