×

Python Combination

Python Combination

Permutations and combinations are the important part of our mathematical tools. We use them often in our Python programs. In this tutorial, we will learn about combinations in Python and how we can use them in our Python program.

Python Combination

In this tutorial, we will learn that how we can calculate combinations from a given data with the help of Python program. For this, we are going to use the inbuilt packages to find the combinations of the given data in the program.

In Python, we have libraries such as itertools which have the in-built features to calculate the combinations of the data or number.

Importing the pre required library (itertools library):

To calculate the combinations of a number or data with the help of our Python program, we have to firstly import the pre required library i.e., itertools library in the program. To import this library in our Python program, we have to use the following command:

> - import itertools

The above command will import the itertools library and all the inbuilt features in the program. It will also form a pathway through which we can use all the functions of itertools in the Python program.

We have to remember the following points before importing the itertools library and using its functions in the Python program:

  • Firstly, we have to create a list of the sequence of the given data as the input of the program.
  • After that, the list we have created will return the output of the program in the form of Python tuples that consists of required number of permutations and combinations.
  • We can also check and set the length of permutations and combinations required in the output of the program.

Calculating Python Combinations of Different Data

As we all know that, combination is the set of data created with the help of given data where a specific order doesn't matter. In Python itertools library, we have provided with a combination() function. With the help of this combination() function, we can calculate all the different possible combinations of the given data.

In the Python program, we will use the different itertools functions to calculate the different combinations of data provided to us. Following are the different ways or method by which we can calculate the combinations of any data provided to us:

1. Combinations of a given string

2. Combinations with the help of replacement

3. Combinations of a given numeric set

Let's learn about each method with the help of some Python programs and understand how we can use them to calculate combinations of different type of data provided to us.

1. Combinations of a given string:

In Python, with the help of combination() function provided to us, we can calculate the different combinations of a string type data provided to us as input. Let's look at some examples of Python program and understand this in a better way.

Example 1:

 # importing the itertools library
 import itertools
 # define a sequence
 sequen = "PythonDeveleopers"
 # calculate possible combinations with letter 2
 combi = itertools.combinations(sequen, 2)
 # printing all combinations in output using for loop
 for m in combi: 
     print(m) 

Output of the program:

 ('P', 'y')
 ('P', 't')
 ('P', 'h')
 ('P', 'o')
 ('P', 'n')
 ('P', 'D')
 ('P', 'e')
 ('P', 'v')
 ('P', 'e')
 ('P', 'l')
 ('P', 'e')
 ('P', 'o')
 ('P', 'p')
 ('P', 'e')
 ('P', 'r')
 ('P', 's')
 ('y', 't')
 ('y', 'h')
 ('y', 'o')
 ('y', 'n')
 ('y', 'D')
 ('y', 'e')
 ('y', 'v')
 ('y', 'e')
 ('y', 'l')
 ('y', 'e')
 ('y', 'o')
 ('y', 'p')
 ('y', 'e')
 ('y', 'r')
 ('y', 's')
 ('t', 'h')
 ('t', 'o')
 ('h', 'r')
 ('h', 's')
 ('o', 'n')
 ('o', 'D')
 ('o', 'e')
 ('o', 'v')
 ('o', 'e') …. Continued …. 

Example 2::

 # importing the itertools library
 import itertools
 # define a sequence
 sequen = "TUTORIALANDEXAMPLE"
 # calculate possible combinations with letter 2
 combi = itertools.combinations(sequen, 2)
 # printing all combinations in output using for loop
 for m in combi: 
     print( m) 

Output of the program:

 ('A', 'P')
 ('A', 'L')
 ('A', 'E')
 ('N', 'D')
 ('N', 'E')
 ('N', 'X')
 ('N', 'A')
 ('N', 'M')
 ('N', 'P')
 ('N', 'L')
 ('N', 'E')
 ('D', 'E')
 ('D', 'X')
 ('D', 'A')
 ('D', 'M')
 ('D', 'P')
 ('D', 'L')
 ('D', 'E')
 ('E', 'X')
 ('E', 'A')
 ('E', 'M')
 ('E', 'P')
 ('E', 'L')
 ('E', 'E')
 ('X', 'A')
 ('X', 'M')
 ('X', 'P')
 ('X', 'L')
 ('X', 'E')
 ('A', 'M')
 ('A', 'P')
 ('A', 'L')
 ('A', 'E')
 ('M', 'P')
 ('M', 'L')
 ('M', 'E')
 ('P', 'L')
 ('P', 'E')
 ('L', 'E') …. Continued …. 

Explanation: In the above programs, we have firstly imported the itertools library. Then, we have defined a sequence in both programs. After that, we have calculated a particular set of combination with length 4 and 5 in example 1 & 2 respectively. We calculated the combinations using the itertools.combinations() function. After that, we have used a for loop in each example to print the calculated number of combinations in the output of the program. As we can see in the output, we have printed all different combinations.

2. Combinations with the help of replacement:

In itertools library, there is one more function present which we can use to find the all possible combinations of given input data. This method us called as combination_with_replacement(). It is very useful as it takes into consideration about the combination of a number itself while calculating all possible number of combinations in the given data. Let's look at some examples of Python program and understand this combination_with_replacement() method in a better way.

Example 1:

 # importing the itertools library
 import itertools
 # define a sequence
 sequen = ['T', 'U', 'T', 'O', 'R', 'I', 'A', 'L', 'A', 'N', 'D', 'E', 'X', 'A', 'M', 'P', 'L', 'E']
 # calculate possible combinations with letter 2
 combi = itertools.combinations_with_replacement(sequen, 2)
 # printing all combinations in output using for loop
 for m in combi: 
     print(m) 

Output of the program:

 ('T', 'T')
 ('T', 'U')
 ('T', 'T')
 ('T', 'O')
 ('T', 'R')
 ('T', 'I')
 ('T', 'A')
 ('T', 'L')
 ('T', 'A')
 ('T', 'N')
 ('T', 'D')
 ('T', 'E')
 ('T', 'X')
 ('T', 'A')
 ('T', 'M')
 ('T', 'P')
 ('T', 'L')
 ('T', 'E')
 ('U', 'U')
 ('U', 'T')
 ('U', 'O')
 ('U', 'R')
 ('U', 'I')
 ('U', 'A')
 ('U', 'L')
 ('U', 'A')
 ('U', 'N')
 ('U', 'D')
 ('U', 'E')
 ('U', 'X')
 ('U', 'A')
 ('U', 'M')
 ('U', 'P')
 ('U', 'L')
 ('U', 'E')
 ('T', 'T')
 ('T', 'O')
 ('T', 'R')
 ('T', 'I')
 ('T', 'A')
 ('T', 'L')
 ('T', 'A')
 ('T', 'N')
 ('T', 'D')
 ('T', 'E')
 ('T', 'X')
 ('T', 'A')
 ('T', 'M')
 ('T', 'P')
 ('T', 'L')
 ('T', 'E')
 ('O', 'O')
 ('O', 'R')
 ('O', 'I')
 ('O', 'A')
 ('O', 'L')
 ('O', 'A')
 ('O', 'N')
 ('O', 'D')
 ('O', 'E')
 ('O', 'X')
 ('O', 'A')
 ('O', 'M')
 ('O', 'P')
 ('O', 'L')
 ('O', 'E')
 ('R', 'R')
 ('R', 'I')
 ('R', 'A')
 ('R', 'L')
 ('R', 'A')
 ('R', 'N')
 ('R', 'D') …. Continued … 

Explanation: In the above given program, we have used combination_with_replacement() to find all the possible combinations and then, we used the for loop to print all these combinations in the output of the program. The Python printed all these combinations in the form of tuple in the output.

3. Combinations of a given numeric set:

If the input data is in the form of numeric set and in the sorted order, the combinations_with_replacement() function of itertools library will return the output in the form of tuples. These Python tuples will be the all-possible combinations of the numeric data provided to us. We can set the length of the combination that we want in the output. Let's look at some examples of Python program and understand this in a better way.

Example 1:

 # importing the itertools library
 import itertools
 # define a sequence of numbers
 sequen = [1, 3, 5, 7, 9, 11]
 # calculate possible combinations with letter 2
 combi = itertools.combinations_with_replacement(sequen, 2)
 # printing all combinations in output using for loop
 for m in combi: 
     print(m) 

Output of the program:

 (1, 1)
 (1, 3)
 (1, 5)
 (1, 7)
 (1, 9)
 (1, 11)
 (3, 3)
 (3, 5)
 (3, 7)
 (3, 9)
 (3, 11)
 (5, 5)
 (5, 7)
 (5, 9)
 (5, 11)
 (7, 7)
 (7, 9)
 (7, 11)
 (9, 9)
 (9, 11)
 (11, 11) 

Example 2:

 # importing the itertools library
 import itertools
 # define a sequence of numbers
 sequen = [2, 4, 6, 8, 10, 12, 14] 
 # calculate possible combinations with letter 3
 combi = itertools.combinations_with_replacement(sequen, 3)
 # printing all combinations in output using for loop
 for m in combi: 
     print(m) 

Output of the program:

 (2, 2, 2)
 (2, 2, 4)
 (2, 2, 6)
 (2, 2, 8)
 (2, 2, 10)
 (2, 2, 12)
 (2, 2, 14)
 (2, 4, 4)
 (2, 4, 6)
 (2, 4, 8)
 (2, 4, 10)
 (2, 4, 12)
 (2, 4, 14)
 (2, 6, 6)
 (2, 6, 8)
 (2, 6, 10)
 (2, 6, 12)
 (2, 6, 14)
 (2, 8, 8)
 (2, 8, 10)
 (2, 8, 12)
 (2, 8, 14)
 (2, 10, 10)
 (2, 10, 12)
 (2, 10, 14)
 (2, 12, 12)
 (2, 12, 14)
 (2, 14, 14)
 (4, 4, 4)
 (4, 4, 6)
 (4, 4, 8)
 (4, 4, 10)
 (4, 4, 12)
 (4, 4, 14)
 (4, 6, 6)
 (4, 6, 8)
 (4, 6, 12) … continued … 

Explanation: In the above examples, we have provided with two different sets of numeric data. To find all the possible combinations of the given numeric data, we have imported itertools library in the program and then used the combination function on the numeric data provided to us. We used for loop to print the all-possible combinations in the output of the program. The all-possible combinations of the numeric data will be printed in the form of Python tuples.


Related Topics

AES CTR Python

Python Programming Language  Python is an interactive and more accessible language than any other programming language. The python programming language uses a variety of libraries to perform the operations in a...

3 minutes read.

Comment starts with the symbol in Python

Python programming language: Python is an interactive and more accessible language than any other programming language. The python programming language uses a variety of libraries to perform the operations in a...

3 minutes read.

What is Sleeping Time in Python

Did you ever postpone a Python program's execution? Usually, you want your code to execute as quickly as possible. But there are times when it is in your best interests...

3 minutes read.

Python elif

Python elif The elif statement is used to check multiple conditions and execute the specific block of statements depending upon the true condition among them. Syntax if expression1: statement elif expression2: statement elif expression3: statement else: statement The elif statement can be optional...

3 minutes read.

Python vars() Function

Python vars() Function The vars() function in Python returns the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute. Syntax vars([object]) Parameter object: This parameter represents any object with a __dict__attribute Return This function returns...

1 minute read.

How to find square root in python

How to find Square Root of a number In Python Python makes a lot of tasks easier by using different functions, modules, and libraires. There is an inbuilt function in Python...

6 minutes read.

Python for loop

 Python for loop A for loop in Python executes a block of code for a specified number of times, based on a given sequence. The for loop in Python is different than any other...

3 minutes read.

ModuleNotFoundError No module named 'mysql' in Python

mysql module not found is an error that occurs in python. It appears like ModuleNotError: No module named 'mysql.' This error occurs when you forget to install a module called...

3 minutes read.

Polymorphism in Python

What is polymorphism and why is it important? Polymorphism's literal definition is the state of occurring in diverse shapes or forms. When it comes to programming, the idea of polymorphism is crucial....

3 minutes read.

Sys Module in Python

What are Modules? The Modules are the kind of files that contain Python statements and definitions. The module is known by the name of the file followed by the suffix “.py”....

5 minutes read.

Keyboard Jump Game in Python

Keyword hop (jump) game is a speed composing game that aides in further developing the composing velocity of players The object of Keyboard Jump (hop) Game Python Project is to fabricate...

7 minutes read.

Continue and Pass Statements in Python

Difference between continue and pass statements in Python The tasks can be repeated and automated efficiently using loops in Python. Sometimes we have to exit from the entire loop completely, we...

2 minutes read.

Reason for Python So Popular

One of the languages that is witnessing outstanding development and acceptance every year in Python. Python has emerged as the programming language with the greatest rate of growth, and Stack...

3 minutes read.

The Calendar Module of Python

The calendar module provides calendar features, including printing functions for a specific month or year. Default is the first day of the week on Monday and the last day on Sunday...

3 minutes read.

Compound Interest GUI Calculator using Tkinter in Python

GUI: One of the most significant factors that increased the usability of computer and digital technologies for common, less tech-savvy users is likely the development and widespread adoption of GUIs. GUIs...

6 minutes read.

Python Setup guide and installation

Python Installation guide Step by Step Python is widely used high-level programming language. The first version of Python was launched in 1991. Since then, Python has been gaining popularity. It is considered as...

4 minutes read.

How to reverse a string in Python

In Python language, we have a few ways to reverse a string. In this article, let us discuss these ways and understand the suitability of these ways in different scenarios...

5 minutes read.

How to plot a Histogram in Python

A Histogram is used to represent a given data provided as a chunk. This histogram is a graphical representation that uses bars to indicate the ranges of the data. In...

4 minutes read.

Arguments and parameters in Python

Generally, there is a misunderstanding that parameters and arguments, both are the same. But, as a programmer, you need to understand the difference between these two. Parameters: While defining a function, we...

5 minutes read.

Python List copy() method

Python List copy () method The list.copy () method returns a shallow copy of the list. Syntax list.copy() Parameter NA Return This function returns the copy for the given list. Example 1 # Python program explaining # the list.copy() method # passing the...

1 minute read.