Skip to content

Instantly share code, notes, and snippets.

@dhermes
Last active August 29, 2015 14:07
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 dhermes/830b2c3fccfda81f3b73 to your computer and use it in GitHub Desktop.
Save dhermes/830b2c3fccfda81f3b73 to your computer and use it in GitHub Desktop.
itertools-product-example
>>> import itertools
>>> for pair in itertools.product((0, 1), repeat=2):
... print pair
...
(0, 0)
(0, 1)
(1, 0)
(1, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment