In my class:
class MyClass:
    def __init__(self):
        self.title = None
How does python "know" to pass MyClass as the first argument to init when doing:
MyClass()
Likewise, if I had a classmethod, how would python "know" to pass MyClass as the first argument (cls) in that as well?
 
     
    