Discuss / Python / 就是这么短

就是这么短

Topic source

def product(x, y=1, list): num = x y for n in list: num *= n return num


  • 1

Reply