fork download
  1. d = {'a': 1, 'b': 2, 'c': 3}
  2. for key in d:
  3. print(key)
  4.  
  5.  
Success #stdin #stdout 0.11s 14164KB
stdin
Standard input is empty
stdout
a
b
c