fork download
  1. from collections import OrderedDict
  2. d=dict([('a',1),('b',2),('c',3)])
  3. print(d)
  4. od=OrderedDict([('a',1),('b',2),('c',3)])
  5. print(od)
  6. # your code goes here
Success #stdin #stdout 0.11s 14116KB
stdin
Standard input is empty
stdout
{'a': 1, 'b': 2, 'c': 3}
OrderedDict({'a': 1, 'b': 2, 'c': 3})