Python中的位置參數(*args)和關鍵字參數(**kwargs)

在Python中:python 位置參數:會被打包成元組,元組的元素是不可改變的,會根據元組中元素對應關係直接賦值 關鍵字參數:會被打包成字典,字典就是key-value,會根據關鍵字及其取值完成對應關鍵字參數的賦值 In [332]: def say_hello_then_call_f(f, *args, **kwargs): ...: print('args is', ar
相關文章
相關標籤/搜索