Skip to content

Instantly share code, notes, and snippets.

@eloyz
Created December 16, 2011 14:27
Show Gist options
  • Save eloyz/1486237 to your computer and use it in GitHub Desktop.
Save eloyz/1486237 to your computer and use it in GitHub Desktop.
Return a list of cloned items
listify = lambda s='chicken egg',n=10: ((s+' ')*n).split()
listify()
listify('eloy')
listify('eloy',20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment