error:'int' object is not callable
def calc_prod(lst): def prod(x,y): return x * y return reduce(prod,lst) f = calc_prod([1, 2, 3, 4]) print f()
为什么会报'int' object is not callable的错误。
def calc_prod(lst): def prod(x,y): return x * y return reduce(prod,lst) f = calc_prod([1, 2, 3, 4]) print f()
为什么会报'int' object is not callable的错误。
2017-09-11
举报