>>> D = {'a': 1, 'b': 2, 'c': 3} >>> D {'a': 1, 'c': 3, 'b': 2}
我只是在Python shell中做了这个,我只是想知道为什么键'c'会在键'b'之后?
python
python ×1