Created
December 11, 2019 14:50
-
-
Save wood-push-melon/d533c51b83c036dc86fd1ed545178962 to your computer and use it in GitHub Desktop.
Taking Slice of an Iterator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
# NOTE: this will consume all items up until the start of slice | |
# and also all the items in islice object | |
s = itertools.islice(range(50), 10, 20) | |
for val in s: | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment