SyntaxFix
Write A Post
Hire A Developer
Questions
class a(object): def my_hello(self): print "hello ravi" class b(a): def my_hello(self): super(b,self).my_hello() print "hi" obj = b() obj.my_hello()