重新排列字典,奇怪的行为

时间:2018-06-04 01:10:12

标签: python dictionary

当我注意到字典如何重新排列自己,想知道是否有人有解释时编写Hexagon Grid数组?

coord = {
    '-4':{'0':0,'1':0,'2':0,'3':0,'4':0},
    '-3':{'-1':0,'0':0,'1':0,'2':0,'3':0,'4':0},
    '-2':{'-2':0,'-1':0,'0':0,'1':0,'2':0,'3':0,'4':0},
    '-1':{'-3':0,'-2':0,'-1':0,'0':0,'1':0,'2':0,'3':0,'4':0},
    '0':{'-4':0,'-3':0,'-2':0,'-1':0,'0':0,'1':0,'2':0,'3':0,'4':0},
    '1':{'-4':0,'-3':0,'-2':0,'-1':0,'0':0,'1':0,'2':0,'3':0},
    '2':{'-4':0,'-3':0,'-2':0,'-1':0,'0':0,'1':0,'2':0},
    '3':{'-4':0,'-3':0,'-2':0,'-1':0,'0':0,'1':0},
    '4':{'-4':0,'-3':0,'-2':0,'-1':0,'0':0}
    }
for r in coord:
    print r

打印:

1
-4
3
2
-1
0
-3
-2
4

0 个答案:

没有答案