*arg:
*args
是用來發(fā)送一個非鍵值對的可變數(shù)量的參數(shù)列表給一個函數(shù).
這里有個例子幫你理解這個概念:
def test_var_args(f_arg, *argv):
print("first normal arg:", f_arg)
for arg in argv:
print("another arg through *argv:", arg)
test_var_args('yasoob', 'python', 'eggs', 'test')
輸出:
first normal arg: yasoob
another arg through *argv: python
another arg through *argv: eggs
another arg through *argv: test
**kwargs:
**kwargs
允許你將不定長度的鍵值對, 作為參數(shù)傳遞給一個函數(shù)绍载。 如果你想要在一個函數(shù)里處理帶名字的參數(shù), 你應(yīng)該使用**kwargs
浮声。
這里有個讓你上手的例子:
def greet_me(**kwargs):
for key, value in kwargs.items():
print("{0} == {1}".format(key, value))
>>> greet_me(name="yasoob")
name == yasoob
使用 *args 和 **kwargs 來調(diào)用函數(shù)
那現(xiàn)在我們將看到怎樣使用*args
和**kwargs
來調(diào)用一個函數(shù)。 假設(shè),你有這樣一個小函數(shù):
def test_args_kwargs(arg1, arg2, arg3):
print("arg1:", arg1)
print("arg2:", arg2)
print("arg3:", arg3)
你可以使用*args
或**kwargs
來給這個小函數(shù)傳遞參數(shù)鸽疾。 下面是怎樣做:
# 首先使用 *args
>>> args = ("two", 3, 5)
>>> test_args_kwargs(*args)
arg1: two
arg2: 3
arg3: 5
# 現(xiàn)在使用 **kwargs:
>>> kwargs = {"arg3": 3, "arg2": "two", "arg1": 5}
>>> test_args_kwargs(**kwargs)
arg1: 5
arg2: two
arg3: 3
標(biāo)準(zhǔn)參數(shù)與*args
裁赠、**kwargs
在使用時的順序
那么如果你想在函數(shù)里同時使用所有這三種參數(shù)蹈集, 順序是這樣的:
some_func(fargs, *args, **kwargs)