TypeError:将函数作为函数参数发送时,'int'对象不可调用

时间:2015-11-02 08:57:16

标签: python function parameters typeerror

我收到了此代码的错误消息

def make_lazy(*args):
    # implement here
    return args[0](args[1], args[2])
TypeError: 'int' object is not callable

此代码适用于python 3.5.0,但python 2.7.6显示错误。 如何更正python 2.7.6的代码?

0 个答案:

没有答案