Python/ref func dict
来自菜鸟教程
<languages />
创建包含个人信息的字典:
x = dict(name = "John", age = 36, country = "Norway")
The
dict()
函数创建字典。
字典是无序,可更改和索引的集合。
在本章中阅读有关字典的更多信息: Python字典
.
dict(keyword arguments)
参数 | 描述 |
---|---|
keyword arguments | 需要。您可以使用任意多个关键字参数,以逗号分隔:
key = value , key = value ... |