为了账号安全,请及时绑定邮箱和手机立即绑定

Python中的dict()怎么用?

Python中的dict()怎么用?

jeck猫 2018-07-16 08:18:11
hi,各位大牛,新手上路,对工厂函数不太理解,dict()怎么用?
查看完整描述

3 回答

?
慕工程0101907

TA贡献1887条经验 获得超5个赞

dict(one=1, two=2)

dict({'one': 1, 'two': 2})

dict(zip(('one', 'two'), (1, 2)))

dict([['two', 2], ['one', 1]])


查看完整回答
反对 回复 2018-07-17
?
FFIVE

TA贡献1797条经验 获得超6个赞

help(dict)看帮助....

简单说,就是生成一个{}


查看完整回答
反对 回复 2018-07-17
?
30秒到达战场

TA贡献1828条经验 获得超6个赞

内置的文档很详细了

    dict() -> new empty dictionary

    dict(mapping) -> new dictionary initialized from a mapping object's

        (key, value) pairs

    dict(iterable) -> new dictionary initialized as if via:

        d = {}

        for k, v in iterable:

            d[k] = v

    dict(**kwargs) -> new dictionary initialized with the name=value pairs

        in the keyword argument list.  For example:  dict(one=1, two=2)


查看完整回答
反对 回复 2018-07-17
  • 3 回答
  • 0 关注
  • 675 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信