Chapter 11 - Classes — Python 101 1.0 documentation
www.python101.pythonlibrary.org › chapter11In Python, convention says that the class name should have the first letter capitalized. Next we have an open parentheses followed by the word object and a closed parentheses. The object is what the class is based on or inheriting from. This is known as the base class or parent class. Most classes in Python are based on object. Classes have a special method called __init__ (for initialization). This method is called whenever you create (or instantiate) an object based on this class.
Python 101 - Udemy
www.udemy.com › course › kypython-101Python 101 is a comprehensive course covering all core concepts of Python starting from scratch. It also covers using Python with databases, multi-dimensional arrays with NumPy module and Series and DataFrames using the Pandas module. All the lectures are taught with lots of practical examples using iPython notebooks.