Python dict() 函数
定义和用法
The dict()
函数创建一个字典。
字典是一个无序的、可变的、可索引的集合。
在本章中了解更多关于字典的信息: Python 字典.
语法
dict(关键字参数)
参数值
参数 | 描述 |
---|---|
关键字参数 | 可选。您可以使用任意多个关键字参数,用逗号分隔: 键 = 值, 键 = 值 ... |
The dict()
函数创建一个字典。
字典是一个无序的、可变的、可索引的集合。
在本章中了解更多关于字典的信息: Python 字典.
dict(关键字参数)
参数 | 描述 |
---|---|
关键字参数 | 可选。您可以使用任意多个关键字参数,用逗号分隔: 键 = 值, 键 = 值 ... |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]