一、什么是字典
二、代码示例
score = {'张三': 100, '李四': 98, '王五': 45}
print(score, type(score), id(score))
运行结果:
D:\Environment\Python\Python311\python.exe D:\Environment\PythonWorks\learnpython\马士兵Python\第7章_夫妻站\P58_57.什么是字典.py
{'张三': 100, '李四': 98, '王五': 45} <class 'dict'> 2483861883200
Process finished with exit code 0