fork(2) download
  1. # your code goes here
  2. new_dict = {}
  3. new_dict[0] = 'huj'
  4. new_dict[1] = 'pisda'
  5. new_dict[2] = 'zigurda'
  6.  
  7. for i in new_dict:
  8. print(new_dict[i])
  9.  
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
huj
pisda
zigurda