Definition Return an iterator whose next() method returns selected values from an iterable. Syntax itertools.islice(iterable, stop) --> islice object islice(iterable, start, stop[, step]) --> islice object Parameters iterable start, stop=number Example The return is equal to:
| iterator functions
|