Last active
August 29, 2015 14:09
-
-
Save bsmithyman/406fd89eef8403cf0d75 to your computer and use it in GitHub Desktop.
Python infinite iterator for use with map(...)
This file contains 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
cylon = lambda plan: iter(lambda: plan, None) | |
if __name__ == '__main__' | |
for i, skinjob in enumerate(cylon(6)): | |
print('%d:\t%d'%(i+1, skinjob)) | |
if i >= 11: | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment