电脑上python shell可以运行在这不行
def calc_prod(lst): def h(x,y): return x*y def k(): return reduce(h,lst) return k f = calc_prod([1, 2, 3, 4]) print f() 电脑上python里可以运行,为啥在这不行
def calc_prod(lst): def h(x,y): return x*y def k(): return reduce(h,lst) return k f = calc_prod([1, 2, 3, 4]) print f() 电脑上python里可以运行,为啥在这不行
2016-04-17
举报