Python函數中*args和**kwargs來傳遞變長參數的用法

來源:互聯網
上載者:User
單星號形式(*args)用來傳遞非命名鍵可變參數列表。雙星號形式(**kwargs)用來傳遞索引值可變參數列表。

下面的例子,傳遞了一個固定位置參數和兩個變長參數。

def test_var_args(farg, *args):  print "formal arg:", farg  for arg in args:    print "another arg:", argtest_var_args(1, "two", 3)

結果如下:

formal arg: 1another arg: twoanother arg: 3

這個例子用來展示索引值對形式的可變參數列表,一個固定參數和兩個索引值參數。

def test_var_kwargs(farg, **kwargs):  print "formal arg:", farg  for key in kwargs:    print "another keyword arg: %s: %s" % (key, kwargs[key])test_var_kwargs(farg=1, myarg2="two", myarg3=3)

執行結果:

formal arg: 1another keyword arg: myarg2: twoanother keyword arg: myarg3: 3

調用函數時,使用 *args and **kwargs

這種文法不僅僅是在函數定義的時候可以使用,調用函數的時候也可以使用

def test_var_args_call(arg1, arg2, arg3):  print "arg1:", arg1  print "arg2:", arg2  print "arg3:", arg3args = ("two", 3)test_var_args_call(1, *args)

執行結果如下:

arg1: 1arg2: twoarg3: 3

索引值對方式:

def test_var_args_call(arg1, arg2, arg3):  print "arg1:", arg1  print "arg2:", arg2  print "arg3:", arg3kwargs = {"arg3": 3, "arg2": "two"}test_var_args_call(1, **kwargs)

結果如下:

arg1: 1arg2: twoarg3: 3
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.