Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Last active June 3, 2016 14:35
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 chuck0523/1a66e3010d49cdac474db6f2bc1e8e25 to your computer and use it in GitHub Desktop.
Save chuck0523/1a66e3010d49cdac474db6f2bc1e8e25 to your computer and use it in GitHub Desktop.
print([[x * y for x in 'aaa'] for y in range(1, 10)])
# [['a', 'a', 'a'], ['aa', 'aa', 'aa'], ['aaa', 'aaa', 'aaa'], ['aaaa', 'aaaa', 'aaaa'], ['aaaaa'...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment