python中可以使用哪些方法创建字典 python中可以使用哪些方法创建字典

主机教程 建站分享 2年前 (2022-12-10) 191次浏览

文章摘要:python中可以使用哪些方法创建字典 python中可以使用哪些方法创建字典

python创建字典的方法:1.通过dict关键字创建;2.通过二元组列表创建;3.通过字典推导式创建;4.通 […]

python创建字典的方法:1.通过dict关键字创建;2.通过二元组列表创建;3.通过字典推导式创建;4.通过dict.fromkeys()函数创建;

在python中创建字典的方法有以下几种

1.通过dict关键字创建

>>> dic = dict(spam = 1, egg = 2, bar =3)

>>> dic

{'bar': 3, 'egg': 2, 'spam': 1}

2.通过二元组列表创建

>>> list = [('spam', 1), ('egg', 2), ('bar', 3)]

>>> dic = dict(list)

>>> dic

{'bar': 3, 'egg': 2, 'spam': 1}

3.通过字典推导式创建

>>> dic = {i:2*i for i in range(3)}

>>> dic

{0: 0, 1: 2, 2: 4}

4.通过dict.fromkeys()函数创建

>>> dic = dict.fromkeys(range(3), 'x')

>>> dic

{0: 'x', 1: 'x', 2: 'x'}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中可以使用哪些方法创建字典 python中可以使用哪些方法创建字典
文章链接:http://www.7966.org/post/13071.html
转载请注明出处

喜欢 (0)