Computer Science, asked by pythons123456789, 17 days ago

what is the __init__ method in python?

Answers

Answered by BlackDevil592
1

Answer:

__init__" is a reseved method in python classes. It is known as a constructor in object oriented concepts. This method called when an object is created from the class and it allow the class to initialize the attributes of a class.

Similar questions