因为dict的存储不是按照list的方式顺序排列,所以,迭代出的结果顺序很可能不一样。
>>> d = {'a': 1, 'b': 2, 'c': 3}
>>> for key in d:
... print key
...
a
c
b
本文标题:python 迭代
本文链接:https://www.haomeiwen.com/subject/jluwxttx.html
网友评论