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