1
AX5N 2017-06-09 17:01:18 +08:00
3.6 开始是有序的,之前是无序的
|
2
Douglee 2017-06-09 17:04:37 +08:00
那还要 collections.OrderedDict 有什么用..
|
3
jimmyye 2017-06-09 18:37:49 +08:00
https://docs.python.org/3.6/whatsnew/3.6.html#new-dict-implementation
> The order-preserving aspect of this new implementation is considered an implementation detail and should not be relied upon (this may change in the future, but it is desired to have this new dict implementation in the language for a few releases before changing the language spec to mandate order-preserving semantics for all current and future Python implementations; this also helps preserve backwards-compatibility with older versions of the language where random iteration order is still in effect, e.g. Python 3.5). |
4
264768502 2017-06-09 18:39:52 +08:00 via Android
兼容性考虑
|
5
laoyuan 2017-06-09 18:43:50 +08:00
这个“序”如何访问呢?
|
6
laoyuan 2017-06-09 18:44:15 +08:00
如何根据序来访问呢?
|
7
ipwx 2017-06-09 19:25:57 +08:00
想要有序,请使用 collections.OrderedDict
|
8
dd99iii 2017-06-09 23:03:00 +08:00
t = {}
t['b'] = 'B' t['a'] = 'A' t['c'] = 'C' for k, v in t.items(): print(v) 输出顺序跟存入顺序一样?你再试试 |
9
lrxiao 2017-06-10 01:09:42 +08:00
3.6 确保 dict 有序。。。但是你不能把这个当确保的事情
|
10
lrxiao 2017-06-10 01:10:06 +08:00
第一个确保 -> 实现
|
11
zonghua 2017-06-10 01:12:14 +08:00 via iPhone
tablib 里面用的好多
|
13
dd99iii 2017-06-11 00:28:13 +08:00
|