Python dict() 函數(shù)

2019-03-16 11:36 更新

Python dict() 函數(shù)

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

描述

Python dict() 函數(shù)用于創(chuàng)建一個(gè)字典。

語(yǔ)法

dict 語(yǔ)法:

class dict(**kwarg)
class dict(mapping, **kwarg)
class dict(iterable, **kwarg)

參數(shù)說(shuō)明:

  • **kwargs:關(guān)鍵字
  • mapping:元素的容器。
  • iterable:可迭代對(duì)象。

返回值

返回一個(gè)字典。

實(shí)例

以下實(shí)例展示了 dict 的使用方法:

>>>dict() # 創(chuàng)建空字典
{}
>>> dict(a='a', b='b', t='t') # 傳入關(guān)鍵字
{'a': 'a', 'b': 'b', 't': 't'}
>>> dict(zip(['one', 'two', 'three'], [1, 2, 3])) # 映射函數(shù)方式來(lái)構(gòu)造字典
{'three': 3, 'two': 2, 'one': 1}
>>> dict([('one', 1), ('two', 2), ('three', 3)]) # 可迭代對(duì)象方式來(lái)構(gòu)造字典
{'three': 3, 'two': 2, 'one': 1}
>>>

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)