python 一个类的函数如何调用另一个类中函数的返回值?

有两个类 A类是用wx.frame 生成的图形界面,其中有个ListBox 作为回显用 ,A类调用B类的爬虫程序 ,爬虫程序每爬到一组数据将回显到A类的ListBox上,请问要怎么做到

第1个回答  2016-05-05
可以调用,比如下面,common_func被多个函数调用。 class MyClass: def __init__(self): pass def func1(self): # do something self.common_func() def func2(self): # do something self.common_func() def common_func(self): pass本回答被网友采纳
相似回答