张祎

导航

2016年1月19日

python 中 五种字典(dict)的遍历方法,实验法比较性能。

摘要: 1 、背景: 想知道5种遍历方法,并且知道从性能角度考虑,使用哪种。2、结论: 使用这种方式: for key,val in AutoDict.iteritems(): temp = "%s:%s" % (key,val) 不用这种方式: for (key,val)... 阅读全文

posted @ 2016-01-19 20:44 张祎 阅读(845) 评论(0) 推荐(0) 编辑