Python元組和字典的拆包
在呼叫帶有多值引數的函式時,如果希望:(1)將一個元組變數傳遞給args(2)將一個字典變數傳遞給keargs。就可以選擇拆包,簡化引數的傳遞,拆包的方式是:
- 在元組變數前加一個星號*
- 在字典變數前增加兩個星號**
def demo(*args, **kwargs):
print(args)
print(kwargs)
gl_nums = (1, 2, 3)
gl_dict = {"name": "小明", "age": 18}
demo(*gl_nums, **gl_dict)
輸出:
(1, 2, 3)
{‘name’: ‘小明’, ‘age’: 18}
如果呼叫函式變數前不使用星號:
def demo(*args, **kwargs):
print(args)
print(kwargs)
gl_nums = (1, 2, 3)
gl_dict = {"name": "小明", "age": 18}
demo(gl_nums, gl_dict)
輸出:
((1, 2, 3), {‘name’: ‘小明’, ‘age’: 18})
{}
相關文章
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python元組拆包撿到8倍鏡快準狠Python
- Python列表、元組、字典使用Python
- python_列表——元組——字典——集合Python
- python元組與字典簡介Python
- 3-python 元組 字典 集合的操作Python
- python如何返回元組,列表或字典的?Python
- Python中如何避免字典和元組的多重巢狀的方法Python巢狀
- 三、python的資料型別 列表、元組、字典Python資料型別
- 字典,元組,集合
- Netty 中的粘包和拆包Netty
- Python學習筆記8——列表、字典、元組Python筆記
- Python 列表、元組、字典及集合操作詳解Python
- Python基礎知識七 元組&字典&集合Python
- Python:列表也能拆包?Python
- Python中列表、元組、字典有何區別?Python學習!Python
- python元組和列表Python
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- Python包和模組管理Python
- 字典,元組,集合的增刪改查
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- 2.列表_元組_字典_集合
- Python基礎語法2 元組 & 字典 & 選擇結構Python
- python包和模組的內容整理Python
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- Python奇技淫巧—[2]—使用元組代替字典,同時為元組元素命名,提高可讀性Python
- 【Python_029】內建資料結構,列表 | 字典 | 集合 | 元組Python資料結構
- python的元組Python
- 2020-11-17 元組 字典 集合
- TCP 粘包拆包TCP
- TCP的粘包拆包技術TCP
- Python的包(package)和模組(module)介紹PythonPackage
- Netty解決粘包和拆包問題的四種方案Netty
- Py知識點筆記(列表、元組和字典).Day01筆記
- Netty - 粘包與拆包Netty
- Python的字典、集合和函式Python函式
- Python 元組Python