我写了几个模块来操作不同的系统。只需要系统的IP地址。 现在,是否可以定义一个类来继承其他python模块中已经开发的所有函数?谢谢,
答案 0 :(得分:-1)
我不确定这是否正是您正在寻找的,但您可以extend
来自其他模块的课程:
import other_module
class MyClass(other_module.OtherClass):
def my_function(self):
#do something that calls a function that belonged to OtherClass
self.other_function()