美文网首页
35.创建字典的方法

35.创建字典的方法

作者: vbuer | 来源:发表于2018-09-04 09:37 被阅读4次

    1 直接创建

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

    2 工厂方法

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

    3 fromkeys()方法

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

    相关文章

      网友评论

          本文标题:35.创建字典的方法

          本文链接:https://www.haomeiwen.com/subject/cqzniftx.html