Contribute Media
A thank you to everyone who makes this possible: Read More

__init__ in Python

Description

The __init__ method is used to initialize a class. The initializer method accepts self (the class instance) along with any arguments the class accepts and then performs initialization steps.

Details

Improve this page