2019-07-27 |

创建字典的方法

A
B
C
D
答案:

1 直接创建


dict = {'name':'earth', 'port':'80'}

2 工厂方法


items=[('name','earth'),('port','80')]
dict2=dict(items)
dict1=dict((['name','earth'],['port','80']))

fromkeys()方法


dict1={}.fromkeys(('x','y'),-1)
dict={'x':-1,'y':-1}
dict2={}.fromkeys(('x','y'))
dict2={'x':None, 'y':None}

解释:

0

剑指offer

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论