Discuss / Python / work

def product(x): if x==(): raise TypeError('不能输入空内容') a=1 for m in x: a=ma return a


  • 1

Reply