1. 元组形式
def test1(*args): print('################test1################')
print(type(args))
print(args)
正确调用:
test1(1, 2) #args在函数体内部为tuple类型
错误调用:
test1(1, b=2) #TypeError: test1() got an unexpected keyword argument 'b'
test1(a=1, b=2) #TypeError: test1() got an unexpected keyword argument 'a'
test1(a=1, 2) #TypeError: test1() got an unexpected keyword argument 'a'
2. 字典形式
def test2(**kargs): print('################test2################')
print(type(kargs))
print(kargs)
正确调用:
test2(a=1, b=2) #kargs在函数体内部为dict类型
错误调用:
test2(1, 2) #TypeError: test2() takes exactly 0 arguments (2 given)
test2(1, b=2) #TypeError: test2() takes exactly 0 arguments (2 given)
test2(a=1, 2) #SyntaxError: non-keyword arg after keyword arg
3. 混合形式
def test3(*args, **kargs): print('################test3################')
print(type(args))
print(args)
print(type(kargs))
print(kargs
正确调用:
test3(1, 2) #args在函数体内部为tuple类型,kargs为空dict类型
test3(1, b=2) #args在函数体内部为tuple类型,kargs为dict类型
test3(a=1, b=2) #args在函数体内部为空tuple类型,kargs为dict类型
错误调用:
test3(a=1, 2) #SyntaxError: non-keyword arg after keyword arg
练习:
def test(num,*args,**kwargs):
print('---test1---%d' %num)
print('---test2---',args)
print('---test3---',kwargs) test(100)
test(100,200)
test(100,200,300,mm=100)
答案:
C:\>python test.py
---test1---100
---test2--- ()
---test3--- {} ---test1---100
---test2--- (200,)
---test3--- {} ---test1---100
---test2--- (200, 300)
---test3--- {'mm': 100}