首页 > 其他 > 详细

字典和集合

时间:2018-10-29 22:40:01      阅读:136      评论:0      收藏:0      [点我收藏+]

字典构造方法:

a = dict(one=1, two=2, three=3)
b = {one:1, two:2, three:3}
c = dict(zip([one,two,three],[1,2,3]))
d = dict([(one,1),(two,2),(three,3)])
e = dict({one:1, two:2, three:3})

print(a==b==c==d==e)

输出:
True

 

字典和集合

原文:https://www.cnblogs.com/StackNeverOverFlow/p/9873764.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!