Discuss / Python / 作业

作业

Topic source

def product(x): y = 1; if len(x)==0: raise TypeError('bad operand type') for xx in x: y = yxx; return y


  • 1

Reply