Python – Maximize Nested Tuples
Sometimes, while working with records, we can have a problem in which we require to perform index wise maximum of tuple elements. This can get complicated with tuple elements to be tuple and inner elements again be tuple. Let’s discuss certain ways in which this problem can be solved.
Method #1 : Using zip() + max()
+ nested generator expression
The combination of above functions can be used to perform the task. In this, we combine the elements across tuples using zip(). The iterations and maximize logic is provided by generator expression.
# Python3 code to demonstrate working of # Maximizing Nested Tuples # using zip() + nested generator expression + max() # initialize tuples test_tup1 = (( 1 , 3 ), ( 4 , 5 ), ( 2 , 9 ), ( 1 , 10 )) test_tup2 = (( 6 , 7 ), ( 3 , 9 ), ( 1 , 1 ), ( 7 , 3 )) # printing original tuples print ( "The original tuple 1 : " + str (test_tup1)) print ( "The original tuple 2 : " + str (test_tup2)) # Maximizing Nested Tuples # using zip() + nested generator expression + max() res = tuple ( tuple ( max (a, b) for a, b in zip (tup1, tup2))\ for tup1, tup2 in zip (test_tup1, test_tup2)) # printing result print ( "The resultant tuple after maximization : " + str (res)) |
The original tuple 1 : ((1, 3), (4, 5), (2, 9), (1, 10)) The original tuple 2 : ((6, 7), (3, 9), (1, 1), (7, 3)) The resultant tuple after maximization : ((6, 7), (4, 9), (2, 9), (7, 10))
Method #2 : Using isinstance() + zip() + max()
+ loop + list comprehension
The combination of above functions can be used to perform this particular task. In this, we check for the nesting type and perform recursion. This method can give flexibility of more than 1 level nesting.
# Python3 code to demonstrate working of # Maximizing Nested Tuples # using isinstance() + zip() + loop + list comprehension + max() # function to perform task def tup_max(tup1, tup2): if isinstance (tup1, ( list , tuple )) and isinstance (tup2, ( list , tuple )): return tuple (tup_max(x, y) for x, y in zip (tup1, tup2)) return max (tup1, tup2) # initialize tuples test_tup1 = (( 1 , 3 ), ( 4 , 5 ), ( 2 , 9 ), ( 1 , 10 )) test_tup2 = (( 6 , 7 ), ( 3 , 9 ), ( 1 , 1 ), ( 7 , 3 )) # printing original tuples print ( "The original tuple 1 : " + str (test_tup1)) print ( "The original tuple 2 : " + str (test_tup2)) # Maximizing Nested Tuples # using isinstance() + zip() + loop + list comprehension + max() res = tuple (tup_max(x, y) for x, y in zip (test_tup1, test_tup2)) # printing result print ( "The resultant tuple after maximization : " + str (res)) |
The original tuple 1 : ((1, 3), (4, 5), (2, 9), (1, 10)) The original tuple 2 : ((6, 7), (3, 9), (1, 1), (7, 3)) The resultant tuple after maximization : ((6, 7), (4, 9), (2, 9), (7, 10))
Please Login to comment...