Python 字典
字典
字典是一个无序、可变和索引的集合。 在 Python 中,字典是用大括号编写的,它们有键和值。
实例
Create and print a dictionary:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(thisdict)
亲自试一试 »
字典是一个无序、可变和索引的集合。 在 Python 中,字典是用大括号编写的,它们有键和值。
Create and print a dictionary:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(thisdict)
亲自试一试 »
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。