2017年6月1日

dict字典和set集合

摘要: dict Python内置了字典:dict的支持,dict全称dictionary,在其他语言中也称为map,使用键-值(key-value)存储,具有极快的查找速度。 集合特征:无序且不重复 创建集合 1.set = {1, 2, 3, 4} 2.set2 = set() 3.set3 = set 阅读全文

posted @ 2017-06-01 22:17 Dev-Ops 阅读(180) 评论(0) 推荐(0) 编辑

导航