标签:div highlight 出错 str tps www. span class size
参考链接:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/001431752945034eb82ac80a3e64b9bb4929b16eeed1eb9000
关键字参数**kw
1)在函数中使用
首先要在定义函数的时候这样写
def functionName(positionArg,**kw): s=kw[‘name_a‘]#获取关键字参数中键名为a的
使用函数的时候传入参数的时候
test(‘1‘,a=‘23‘,b=‘234‘) #不能下面这样写,否则后提示有一个位置参数却给了两个 dics={‘a‘:‘23‘,‘b‘:‘234‘} test(‘1‘,dics)
在函数中取值
def test(arg,**kw): s=kw[‘b‘]#没有b的时候会出错
标签:div highlight 出错 str tps www. span class size
原文地址:https://www.cnblogs.com/Gaoqiking/p/10738271.html