Skip to content

Instantly share code, notes, and snippets.

@Nurdok
Created July 13, 2012 23:10
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 Nurdok/3108154 to your computer and use it in GitHub Desktop.
Save Nurdok/3108154 to your computer and use it in GitHub Desktop.
Double Iteration in List Comprehension
>>> result = []
... for x in seq_x:
... for y in seq_y:
... result.append((x,y))
>>> result
2: [(1, 'a'),
(1, 'b'),
(1, 'c'),
(2, 'a'),
(2, 'b'),
(2, 'c'),
(3, 'a'),
(3, 'b'),
(3, 'c'),
(4, 'a'),
(4, 'b'),
(4, 'c')]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment