代码问题!!
def calc_prod(lst):
def prod(x,y):
return x*y
def a_prod():
return reduce(prod,lst)
return a_prod()
f = calc_prod([1, 2, 3, 4])
print f()
为什么会运行失败啊
def calc_prod(lst):
def prod(x,y):
return x*y
def a_prod():
return reduce(prod,lst)
return a_prod()
f = calc_prod([1, 2, 3, 4])
print f()
为什么会运行失败啊
2019-04-09
举报