Skip to content

Instantly share code, notes, and snippets.

@AndersDeleuran
Created October 28, 2014 17: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 AndersDeleuran/400ab4a4cbcef8b9d214 to your computer and use it in GitHub Desktop.
Save AndersDeleuran/400ab4a4cbcef8b9d214 to your computer and use it in GitHub Desktop.
foo = []
for i in range(3):
bar = []
for j in range(3):
bar.append(i*j)
foo.append(bar)
print foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment