I am a Java programmer, beginner in Python programming. I have noticed unexpected behavior in python programming. I was expecting the print sequence as B class ,A Class constructors. But it's executing constructor of A only.
Output as "Its Constructor of A",Could you please help me to understand flow of execution. Thanks in advance
class B:
    def __init__(self):
        print 'Its constructor of B'    
class A(B):
    def __init__(self):
        print 'Its constructor of A'
        #B.__init__(self)
if __name__=='__main__':
    obj=A()
 
     
    