Skip to content

Instantly share code, notes, and snippets.

@bsmithyman
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsmithyman/406fd89eef8403cf0d75 to your computer and use it in GitHub Desktop.
Save bsmithyman/406fd89eef8403cf0d75 to your computer and use it in GitHub Desktop.
Python infinite iterator for use with map(...)
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