slice slice_length number of elements, then jump forward skip_length number of elements, and repeat.
slice_length
skip_length
optionally provide a start index to begin at, and an end index to stop at.
start
end
if you want to skip first and slice second, you can set start = skip_length to get the desired equivalent result.
start = skip_length
Optional
slice
slice_length
number of elements, then jump forwardskip_length
number of elements, and repeat.optionally 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.