Python: Generate the unique combinations - w3resource
w3resource

Python: Generate the unique combinations

Python Itertools: Exercise-27 with Solution

Write a Python program to chose specified number of colours from three different colours and generate the unique combinations

Sample Solution:

Python Code:

from itertools import combinations 
def unique_combinations_colors(list_data, n):
    return [" and ".join(items) for items in combinations(list_data, r=n)]
colors = ["Red","Green","Blue"]
print("Original List: ",colors)
n=1
print("\nn = 1")
print(list(unique_combinations_colors(colors, n)))
n=2
print("\nn = 2")
print(list(unique_combinations_colors(colors, n)))
n=3
print("\nn = 3")
print(list(unique_combinations_colors(colors, n)))

Sample Output:

Original List:  ['Red', 'Green', 'Blue']

n = 1
['Red', 'Green', 'Blue']

n = 2
['Red and Green', 'Red and Blue', 'Green and Blue']

n = 3
['Red and Green and Blue']

Python Code Editor:


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to find the nth Hamming number. User itertools module.
Next: Write a Python program to find the maximum, minimum aggregation pair in given list of integers.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day