标签:默认 *args rgs func fun div 随笔 war ict
把列表中多个值传入函数,调用时 +*
def func(*args): print(args) l = [1,2,3,4,5,6,7,8,9] func(*l)
传入dict中多个值,调用时+**
def func2(**kwargs): print(kwargs) dic = {‘k1‘:1,‘k2‘:2} func2(**dic)
函数的参数:
形参: 位置参数,*args,默认参数,**kwargs
实参: 按照位置传入/按照关键字传入
标签:默认 *args rgs func fun div 随笔 war ict
原文地址:https://www.cnblogs.com/Hxx0916/p/9537852.html