Python如何使用 *arg 和 **kwargs

函數中這種特殊的定義*arg和*kwargs,是用來給函數傳遞不定個數的參數。*arg(只有一個*)用來傳遞list數組,而**kwargs(兩個*)用來傳遞dict字典python def test_var_args(farg, *args): print "formal arg:", farg for arg in args: print "another ar
相關文章
相關標籤/搜索