In Python, for an object MyObj having two attributes a and b, what is the "signature" of its constructor ?
MyObj
a
b
def __init__(a, b):
def MyObj(a, b):
def MyObj(self, a, b):
def __init__(self, a, b):