标签: 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的代码?