Last active
November 13, 2017 19:40
-
-
Save pykong/65c92a36c7ac49d8e80a57d1d7e46060 to your computer and use it in GitHub Desktop.
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
from itertools import cycle | |
lst = ['a', 'b', 'c'] | |
pool = cycle(lst) | |
for item in pool: | |
print(item) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment