1. 程式人生 > >*args與**kwargs用法

*args與**kwargs用法

*args brush not 順序 發送 format pri mda 用法

*args 是用來發送一個非鍵值對的可變數量的參數列表給一個函數.

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 允許你將不定長度的鍵值對, 作為參數傳遞給一個函數

def greet_me(**kwargs):
    for key, value in kwargs.items():
        print("{0} == {1}".format(key, value))


>>> greet_me(name="yasoob")
name == yasoob

使用 args 和 *kwargs 來調用函數

def test_args_kwargs(arg1, arg2, arg3):
    print("arg1:", arg1)
    print("arg2:", arg2)
    print("arg3:", arg3)
# 首先使用 *args
>>> args = ("two", 3, 5)
>>> test_args_kwargs(*args)
arg1: two
arg2: 3
arg3: 5

# 現在使用 **kwargs:
>>> kwargs = {"arg3": 3, "arg2": "two", "arg1": 5}
>>> test_args_kwargs(**kwargs)
arg1: 5
arg2: two
arg3: 3

標準參數與*args、**kwargs在使用時的順序

那麽如果你想在函數裏同時使用所有這三種參數, 順序是這樣的:

some_func(fargs, *args, **kwargs)

  

*args與**kwargs用法