摘要: 1.什么是字典 2. 字典的创建 '''使用{}创建字典方式1''' scores={'张三':100,'李四':98,'王五':44} print(scores) print(type(scores)) '''第二种创建dict()''' student=dict(name='jack',age= 阅读全文
posted @ 2021-11-30 00:12 从精通到陌生 阅读(56) 评论(0) 推荐(0) 编辑