摘要: Python字典方法 字典初体验 创建空字典 dict2 = {} type(dict2) 创建字典 dict1 = {1:'one',2:'two',3:'three'} dict1 {1: 'one', 2: 'two', 3: 'three'} 添加、修改和删除字典项 dict2 {} dic 阅读全文
posted @ 2017-06-10 10:45 戴维德 阅读(988) 评论(0) 推荐(0) 编辑