类
class Variable:
class Function:
变量
函数
初始化
def__init__(self, data):
调用
def __call__(self, input):
抛出错误
raise NotImplementedError("xxx未定义")
class Variable:
class Function:
def__init__(self, data):
def __call__(self, input):
raise NotImplementedError("xxx未定义")