Discuss / Python / 练习解答

练习解答

Topic source

def product(data): if data == (): raise TypeError y = 1 for x in data: y = x return y


  • 1

Reply