chopoff

A small python library that returns the remainder of an iterable slice in python


License
MIT
Install
pip install chopoff==1.0

Documentation

chopoff

A small python library that returns the remainder of the slice of an iterable

Usage

from chopoff import chopoff

a = [1,2,3,4,5]
remainder = chopoff([1,3], a) >>> [1, 4, 5]