#通用函数1 def func(*args, **kwargs): 2 print(args, kwargs) 3 4 func() 5 func(1,2,3,4) 6 func(a=10,b=20) 7 8 func(100,200,300,a=10,b=20)