python学习:动态参数

def show(*args,**kwargs):
    print(args,type(args))
    print(kwargs,type(kwargs))

show(1,2,3,4,k1='v1',k2='v2')

l=[1,2,3,4]
b={'k1':'v1','k2':'v2'}

show(l,b)

show(*l,**b)

 

转载于:https://www.cnblogs.com/alstonlee/p/6530923.html

你可能感兴趣的:(python学习:动态参数)