fork download
  1. # your code goes here
  2. ints = [8, 23, 45, 12, 78]
  3.  
  4. for idx, val in enumerate(ints):
  5. print idx, val
Success #stdin #stdout 0.01s 8968KB
stdin
Standard input is empty
stdout
0 8
1 23
2 45
3 12
4 78