标签:code pre 函数 png 导入 func UNC fun 不定长参数
def func(arg,*args_tuple,**args_dic)
带*的参数会以元组的形式导入,带**的参数会以字典的形式导入
def fuc(a,*arg):
print(a)
print(arg)
fuc("hello",1,2,3,4,5)
输出结果:
def fuc(a,*arg,**dic):
print(a)
print(arg)
print(dic)
fuc("hello",1,2,3,4,5,d=3,b=4,c=5)
输出结果:
标签:code pre 函数 png 导入 func UNC fun 不定长参数
原文地址:https://www.cnblogs.com/moxiao/p/12055663.html