python中的不定长参数

def(a,b,*args):

    pass

其中args为不定长参数,只能放在参数最后面

原文地址:https://www.cnblogs.com/tester-go/p/8059526.html