码:
d = {'a': 0, 'b': 1, 'c': 2} l = d.keys() print l
这打印['a','c','b'].我不确定方法键如何确定l中关键字的顺序.但是,我希望能够以"正确"的顺序检索关键字.正确的顺序当然会创建列表['a','b','c'].
python dictionary
dictionary ×1
python ×1