itertools module - combinations

By Martin McBride, 2022-07-23
Tags: combinations itertools python standard library
Categories: python standard library


The combination function returns a sequence of combinations of the values in the input iterable. A combination is every unique set of r elements from the iterable. See this article for more information on combinations.

For example:

a = [1, 2, 3, 4]
for i in itertools.combinations(a, r=2):
    print(i)

This returns:

(1, 2)
(1, 3)
(1, 4)
(2, 3)
(2, 4)
(3, 4)

Notice that this list contains (1, 2) but it doesn't contain (2, 1). Combinations do not take account of the order of the values, so (1, 2) and (2, 1) are considered to be the same combination.

This type of combination is often called combination without replacement. If we have four cards numbered 1 to 4, and we:

  • Draw a card at random from the 4 cards.
  • Draw a second card at random from the remaining 3 cards (ie without replacing the first card).

The set of possible combinations would be the ones listed above.

combinations_with_replacement

combinations_with_replacement is similar to combinations except that input elements can be repeated. For example:

a = [1, 2, 3, 4]
for i in itertools.combinations_with_replacement(a, r=2):
    print(i)

This adds some extra combinations: (1, 1), (2, 2), (3, 3), and (4, 4):

(1, 1)
(1, 2)
(1, 3)
(1, 4)
(2, 2)
(2, 3)
(2, 4)
(3, 3)
(3, 4)
(4, 4)

The combination with replacement scanario is like this. We have four cards numbered 1 to 4, and we:

  • Draw a card at random from the 4 cards.
  • Make a note of the first card then put ot back in the deck.
  • Draw a second card at random from the 4 cards.

This would make the extra combinations (1, 1), (2, 2) etc possible. Another example would be throwing a dice several times. Clearly the same number could appear more than once.

See also

If you found this article useful, you might be interested in the book NumPy Recipes or other books by the same author.

Join the PythonInformer Newsletter

Sign up using this form to receive an email when new content is added:

Popular tags

2d arrays abstract data type alignment and angle animation arc array arrays bar chart bar style behavioural pattern bezier curve built-in function callable object chain circle classes clipping close closure cmyk colour combinations comparison operator comprehension context context manager conversion count creational pattern data science data types decorator design pattern device space dictionary drawing duck typing efficiency ellipse else encryption enumerate fill filter font font style for loop formula function function composition function plot functools game development generativepy tutorial generator geometry gif global variable gradient greyscale higher order function hsl html image image processing imagesurface immutable object in operator index inner function input installing iter iterable iterator itertools join l system lambda function latex len lerp line line plot line style linear gradient linspace list list comprehension logical operator lru_cache magic method mandelbrot mandelbrot set map marker style matplotlib monad mutability named parameter numeric python numpy object open operator optimisation optional parameter or pandas partial application path pattern permutations pie chart pil pillow polygon pong positional parameter print product programming paradigms programming techniques pure function python standard library radial gradient range recipes rectangle recursion reduce regular polygon repeat rgb rotation roundrect scaling scatter plot scipy sector segment sequence setup shape singleton slice slicing sound spirograph sprite square str stream string stroke structural pattern subpath symmetric encryption template tex text text metrics tinkerbell fractal transform translation transparency triangle truthy value tuple turtle unpacking user space vectorisation webserver website while loop zip zip_longest