请问这样为什么不可以?
//def calc_prod(lst):
def lazy_prod(lst):
def f(x, y):
return x * y
return reduce(f, lst, 1)
return lazy_prod
f = calc_prod([1, 2, 3, 4])
print f()
//def calc_prod(lst):
def lazy_prod(lst):
def f(x, y):
return x * y
return reduce(f, lst, 1)
return lazy_prod
f = calc_prod([1, 2, 3, 4])
print f()
2019-01-22
举报