Python Tutorial 14 ( Constructor, Self)

Python Tutorial 14 ( Constructor, Self)

1. __init__() is a special method which is called class constructor. 2. Initialization method that Python calls when you create a new instance of this class. 3. The first argument to each method is self. 4. Python adds the self argument to the list.