一.动态参数 def func(a,b,c,d,e,f,g): pass func(1,2,3,4,5,6,7) 如果加30个参数呢?有没有万能的参数,可以代表一切参数呢? *args 动态参数,万能参数agrs接收的就是实参对应的所有位置参数,并将其放在元组中它不会接收关键字参数 def func(*args): pass func(1,2,3,4,5,6,7) 打印返回值 def func(*args): print(args) func(1,2,3,4,5,6,7) 执行输出:(1, 2,