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
Success #stdin #stdout 0.08s 14188KB
stdin
Standard input is empty
stdout
dict[('a', 1), ('b', 2), ('c', 3)]