Discuss / Python / 练习

练习

Topic source

def product(x,y=1,any): s = x y for i in any: s = s * i return s


  • 1

Reply