class Parent(): def first(self): print('This is Parent Class') class Child(Parent): def second(self): print('This is Chile Class') ob = Child() ob.first() ob.second()