Discuss / Python / 第二题简单的题

第二题简单的题

Topic source

talyerbooming

#1 Created at ... [Delete] [Delete and Lock User]

def prod(L):

    def f(x,y):

        return x*y

    return reduce(f,L)


  • 1

Reply