How to use map() and lambda function In Python

Step-by-step approach:

  1. Initialize the list and tuple.
  2. Using the lambda function and map(), create a list of tuples by iterating through the elements of the test_list and combining them with the first element of test_tup.
  3. Using the lambda function and map(), create another list of tuples by iterating through the elements of the test_list and combining them with the second element of test_tup.
  4. Concatenate the two lists created in the above two steps to get the Cartesian product.
  5. Print the Cartesian product.

Below is the implementation of the above approach:

Python3




#initialize list and tuple
test_list = [1, 4, 6, 7]
test_tup = (1, 3)
 
#printing original list and tuple
print("The original list : " + str(test_list))
print("The original tuple : " + str(test_tup))
 
#Construct Cartesian Product Tuple list
#using map() and lambda function
res = list(map(lambda x: (test_tup[0], x), test_list)) + list(map(lambda x: (test_tup[1], x), test_list))
 
#printing result
print("The Cartesian Product is : " + str(res))


Output

The original list : [1, 4, 6, 7]
The original tuple : (1, 3)
The Cartesian Product is : [(1, 1), (1, 4), (1, 6), (1, 7), (3, 1), (3, 4), (3, 6), (3, 7)]

Time complexity: O(n), where n is the length of the input list
Space complexity: O(n), where n is the length of the input list

Using numpy:

Algorithm:

  1. Convert the input list test_list to a NumPy array arr[].
  2. Use the mesh grid function to get the Cartesian product of the elements of the tuple test_tup and the array arr. 
  3. This returns two arrays X and Y that represent the coordinates of the points in a grid.
  4. Stack the arrays X and Y vertically using the column_stack function to get the desired output res.

Below is the implementation of the above approach:

Python3




import numpy as np
 
test_list = [1, 4, 6, 7]
test_tup = (1, 3)
 
# Print original list and tuple
print("The original list : " + str(test_list))
print("The original tuple : " + str(test_tup))
 
# Convert list to numpy array
arr = np.array(test_list)
 
# Get Cartesian product using meshgrid function
X, Y = np.meshgrid([test_tup[0], test_tup[1]], arr)
res = np.column_stack((X.ravel(), Y.ravel()))
 
# Print result
print("The Cartesian Product is : " + str(res))
 
# This code is contributed by Jyothi pinjala


Output:

The original list : [1, 4, 6, 7]
The original tuple : (1, 3)
The Cartesian Product is : [[1 1]
[3 1]
[1 4]
[3 4]
[1 6]
[3 6]
[1 7]
[3 7]]

Time Complexity: O(N2), where n is the length of the input list test_list.
Space Complexity: O(N2)

Using list comprehension and tuple concatenation:

  • Initializes a list test_list and a tuple test_tup.
  • The original list and tuple are printed using print() statements.
  • Cartesian product tuple list is constructed using list comprehension and tuple concatenation We are just iterating
  • The result is printed using a print() statement.

Python3




# initialize list and tuple
test_list = [1, 4, 6, 7]
test_tup = (1, 3)
 
# printing original list and tuple
print("The original list : " + str(test_list))
print("The original tuple : " + str(test_tup))
 
# Construct Cartesian Product Tuple list using list comprehension and tuple concatenation
res = [(a, ) + (b, ) for a in test_tup for b in test_list]
 
# printing result
print("The Cartesian Product is : " + str(res))


Output

The original list : [1, 4, 6, 7]
The original tuple : (1, 3)
The Cartesian Product is : [(1, 1), (1, 4), (1, 6), (1, 7), (3, 1), (3, 4), (3, 6), (3, 7)]

Time complexity: O(n), where n is the length of the input list
Space complexity: O(n), where n is the length of the input list



Python | Construct Cartesian Product Tuple list

Sometimes, while working with data, we need to create data as all possible pairs of containers. This type of application comes from the web development domain. Let’s discuss certain ways in which this task can be performed. 

Similar Reads

Using list comprehension

list comprehension in Python is a one-liner way to perform this particular task. In this, we just shorten the task of looping in one line to generate all possible pairs of tuples with list elements....

Using itertools.product()

...

Using recursion

This task can also be performed using a single function that internally performs the task of returning the required Cartesian Product, here we are using itertools.product():...

Using map() and lambda function

...