Skip to content

Instantly share code, notes, and snippets.

@reusee
Created October 22, 2016 15:11
Show Gist options
  • Select an option

  • Save reusee/288cffc6bf2f55c34799e76342894186 to your computer and use it in GitHub Desktop.

Select an option

Save reusee/288cffc6bf2f55c34799e76342894186 to your computer and use it in GitHub Desktop.
import itertools
def l():
while True:
for e in ['a', 'b', 'c', 'd']:
yield e
print(list(itertools.islice(l(), 7)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment