fork download
  1. b = {}
  2. b[1] = 0
  3. c = 0
  4. for k in b.keys():
  5. if c < 10:
  6. b[c] = 1
  7. c += 1
  8. print b
  9.  
Success #stdin #stdout 0.07s 8832KB
stdin
Standard input is empty
stdout
{0: 1, 1: 0}