代码如下:
def mult(*arg): s=1 for i in arg: s=s*i return s
print(mult(2,3))
mult函数
原文:http://www.cnblogs.com/zhpf/p/6851898.html