为什么错误说对象没有属性?

时间:2019-10-23 23:49:26

标签: python class inheritance

我已经看过很多遍此代码了,但我无法找出错误为什么一直在说

funcHandleArg = {func_handle1, func_handle2}
function output = myFunc(funcHandleArg, someOtherStuff)
arguments
    funcHandleArg function_handle "AND cells of function_handles"
    someOtherStuff otherStuff
end
output = someFunctionOf(funcHandleArg, someOtherStuff)
end 

任何帮助将不胜感激。 谢谢

1 个答案:

答案 0 :(得分:4)

应该是:

class Electric(Car):
    def __init__(self, make, model, year):

带有两个下划线。