Discuss / Python / 作业

作业

Topic source

def product(numbers): if numbers is (): raise TypeError s = 1 for n in numbers: s = s n return s


  • 1

Reply