Discuss / Python / 作业

作业

Topic source

defproduct(*args):

    s=1

for arg in args:

        s=s*arg

return s


  • 1

Reply