fork download
  1. d = {'a': 1, 'b': 2, 'c': 3}
  2. for k,v in d.items():
  3. print(k,v)
Success #stdin #stdout 0.1s 14068KB
stdin
Standard input is empty
stdout
a 1
b 2
c 3