python继承中子类访问父类的方法(包括__init__)主要有两种方法,一种是调用父类的未绑定方法,另一种是使用super(仅仅对于新式类),看下面的两个例子: #coding:utf-8 class Father(object): #继承自object,使用新式类 def hello(self, name): print 'i am ' + name + ' from Father ' class Son(Father): def hello(self, name): print 'i a…