Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python中使用的排序原理是什么?
>>> dict = {'a':'paul', 'b':'max', 'c':'bill'} >>> dict {'a': 'paul', 'c': 'bill', 'b': 'max'}
为什么不?
{'a': 'paul', 'b': 'max', 'c': 'bill'}
python中的字典是无序的集合:
最好将字典视为一组无序的键:值对,并要求键是唯一的(在一个字典中)。
不过,您可以使用collections.OrderedDict来获得有序字典。