×

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

Python Os sep

Python: 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 faster way....

3 minutes read.

How to declare array in python

How to declare array in python? Arrays are a great way of storing our numeric values into a variable in continuous locations. For declaring an array in C language, we used...

4 minutes read.

Python input() function

Python input() function The input() function in Python reads a line from input and converts it to a string (stripping a trailing newline). Syntax input([prompt]) Parameter prompt: This function represents a string, depicting a default...

1 minute read.

Python Redis Example

Introduction: Redis, representing Distant Word reference Server, is a kind of key-esteem NoSQL server. Redis is intended to help circle capacity for determination, holding information after power is stopped, and stores information...

5 minutes read.

Google Chrome API in Python

Python: 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 faster way....

3 minutes read.

Python Win32 Process

The Win32 process is essentially a Python procedure. This program provides access to advanced Win32 process creation and management features. Process objects are created through the Create method (the constructor)....

6 minutes read.

Yield Statement In Python

The generators are defined by using the yield statement in Python. Generally, it converts a normal Python function into a generator.  The yield statement hauls the function and returns back the...

2 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.

Word frequency Python

Word frequency Python In this tutorial, we will write the Python program to count the occurrence of a word (word frequency) in a given sentence. We will learn all the approaches...

5 minutes read.

Python Break Statement

In Python, loops are used to automate and repeat processes in an effective manner. However, there may be occasions when you wish to entirely exit the loop, skip an iteration,...

2 minutes read.

Installing Packages in Python

It's critical to understand that the term "package" here refers to a collection of software that must be installed (i.e. as a synonym for a distribution). It has nothing to...

6 minutes read.

Speech Recognition in Python

What is Speech Recognition? Speech Recognition is a term defined for automatic recognition of human speech. Speech recognition is the most significant activity in the domain of the interaction between the...

8 minutes read.

Alexa Python

The cloud-based voice assistant renders text into speech in a female voice. Alexa is a virtual assistant released by Amazon. Using itself as a system for home automation, Alexa can...

4 minutes read.

Python len() function

Python len() function The len() function in Python  returns the number of items in an object. Syntax len(s) Parameter s: This parameter represents a sequence (such as a string, bytes, tuple, list, or range) or...

1 minute read.

OSError in Python

Python: Python programming language is one of the most used programming languages, as it is used widely in the field of software and data analysis, web development, etc. It is said...

4 minutes read.

Python JSON Schema

Python-jsonschema JSON: JSON stands for JavaScript Object Notation. It is a text-based format that represents structured data and can be used to interchange data among various applications. This is self-defining language...

5 minutes read.

Python 2.7 data structures

The rundown information type has a few additional techniques. Here is every one of the strategies for listing objects: list.append(x): Add a thing to the furthest limit of the rundown; comparable...

9 minutes read.

Scraping data in python

Data scraping is a technique in which one program extracts a set of data from the output of another program. Web scraping is the most common application of this technique....

6 minutes read.

Python setattr() function

Python setattr() function The setattr() function sets the value of the specified attribute of the specified object. Syntax setattr(object, name, value) Parameter object: This parameter represents any object. name: This parameter represents the name of the attribute you...

1 minute read.

Python String startswith() method

Python String startswith() method The string.startswith() method in Python returns a boolean value ‘True’ if the given string starts with the prefix, otherwise it returns False. Syntax startswith(prefix[, start[, end]]) Parameter prefix: This parameter signifies the value to check. start(optional):...

1 minute read.