我有以下代码,其中我试图扩展initBaseExporter方法:

from apps.ingest.platform_export import BaseExporter

class Vudu(BaseExporter):

    def __init__(self):
        BaseExporter.__init__()
        self.platform = ' Vudu'


基本上,我想要来自BaseExporter的所有init'd变量以及self.platform = 'Vudu'的其他变量。我将如何正确执行此操作?

最佳答案

您走在正确的轨道上,只在父母课堂上缺少自我

from apps.ingest.platform_export import BaseExporter

class Vudu(BaseExporter):

    def __init__(self):
        BaseExporter.__init__(self)
        self.platform = ' Vudu'

关于python - 如何通过继承扩展init方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30605937/

10-12 19:27