字典和集合
Posted stackneveroverflow
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字典和集合相关的知识,希望对你有一定的参考价值。
字典构造方法:
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
以上是关于字典和集合的主要内容,如果未能解决你的问题,请参考以下文章