Python tips: 什麼是*args和**kwargs?

來源:互聯網
上載者:User

先來看個例子:

def foo(*args, **kwargs):    print 'args = ', args    print 'kwargs = ', kwargs    print '---------------------------------------'if __name__ == '__main__':    foo(1,2,3,4)    foo(a=1,b=2,c=3)    foo(1,2,3,4, a=1,b=2,c=3)    foo('a', 1, None, a=1, b='2', c=3)
輸出結果如下:

args =  (1, 2, 3, 4)

kwargs =  {}

---------------------------------------

args =  ()

kwargs =  {'a': 1, 'c': 3, 'b': 2}

---------------------------------------

args =  (1, 2, 3, 4)

kwargs =  {'a': 1, 'c': 3, 'b': 2}

---------------------------------------

args =  ('a', 1, None)

kwargs =  {'a': 1, 'c': 3, 'b': '2'}

---------------------------------------

可以看到,這兩個是python中的可變參數。*args表示任何多個無名參數,它是一個tuple;**kwargs表示關鍵字參數,它是一個dict。並且同時使用*args和**kwargs時,必須*args參數列要在**kwargs前,像foo(a=1, b='2', c=3, a', 1, None, )這樣調用的話,會提示法錯誤“SyntaxError: non-keyword arg after keyword arg”。

 

呵呵,知道*args和**kwargs是什麼了吧。還有一個很漂亮的用法,就是建立字典:

    def kw_dict(**kwargs):        return kwargs    print kw_dict(a=1,b=2,c=3) == {'a':1, 'b':2, 'c':3}

其實python中就帶有dict類,使用dict(a=1,b=2,c=3)即可建立一個字典了。

 

“人生苦短,我用python。”

Technorati 標籤: python,tuple,dict,*args,**kwargs
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.