slice slice_length number of elements, then jump forward skip_length number of elements, and repeat
optionally provide a start index to begin at, and an end index to stop at.
if you want to skip first and slice second, you can set start = skip_length to get the desired equivalent result
slice
slice_length
number of elements, then jump forwardskip_length
number of elements, and repeatoptionally provide a
start
index to begin at, and anend
index to stop at.if you want to skip first and slice second, you can set
start = skip_length
to get the desired equivalent result