fork download
  1. def myRange(startIndex, count, offset):
  2. return xrange(startIndex, count + offset - 1, offset)
  3.  
  4. count = 3132
  5. offset = 200
  6. for x in myRange(0, count, offset):
  7. print x
Success #stdin #stdout 0.01s 7692KB
stdin
Standard input is empty
stdout
0
200
400
600
800
1000
1200
1400
1600
1800
2000
2200
2400
2600
2800
3000
3200