无参方法在同类方法中调用写法

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

代码片段如下:

    ----ship----

        else:

            print u"failure"

            write()

    except:

        print u"Failure"

        write()

def write(self):

    basename = os.path.splitext(os.path.basename(__file__))[0]

    ----ship----

 

若要在同类的其他方法中使用write,则需要在调用时,在write之前加上"self.":self.write

修改后,代码片段如下:

    ----ship----

        else:

            print u"failure"

            self.write

    except:

        print u"Failure"

        self.write

def write(self):

    basename = os.path.splitext(os.path.basename(__file__))[0]

    ----ship----

转载于:https://my.oschina.net/u/2431775/blog/760517

你可能感兴趣的:(无参方法在同类方法中调用写法)