python创建字典的两种方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python创建字典的两种方法相关的知识,希望对你有一定的参考价值。

>>> dict1 = {‘name‘: ‘earth‘, ‘port‘: 80}
>>> dict2 = {}
>>> dict1,dict2
({‘name‘: ‘earth‘, ‘port‘: 80}, {})
>>> 

工厂方法创建字典

>>> dict3 = dict(([‘x‘,1],[‘y‘,2]))     
>>> dict3
{‘y‘: 2, ‘x‘: 1}
>>> 

以上是关于python创建字典的两种方法的主要内容,如果未能解决你的问题,请参考以下文章

判断python字典中key是否存在的两种方法

python中字典循环的两种方式

python——反转字典的两种方法(字典的key和value对换)

Python判断变量的数据类型的两种方法

18python基础学习-字典

python遍历数组的两种方法的代码