Is there a built-in/existing library function that is like xrange
but splits an interval into even spaced non-overlapping chunks?
For instance, if we call this function xchunks
, then I would like:
>>> xchunks(start=0, stop=18, step=5)
[(0, 4), (5, 9), (10, 14), (15, 17)]
Ideally, this should also work for negative step
.
>>> xchunks(start=20, stop=2, step=5)
[(20, 16), (15, 11), (10, 6), (5, 3)]
This (almost) does what you want:
Result:
You can improve on this an make the last pair
(15, 17)
.