Discuss / Python / 作业……

作业……

Topic source

def product(x, y=1,args): p=xy if len(args) !=0: for n in args: p=p*n return p


  • 1

Reply