How to find the minimum product pair in a list of tuples with Python

1 Answer

0 votes
def minimum_product_pair_list_tuples(lst_tpl):
   result = min(lst_tpl, key=lambda t: t[0] * t[1])
   
   return result
   
lst_tpl = [(5, 6), (2, 7), (1, 3), (2, 4), (6, 1)]  

print(minimum_product_pair_list_tuples(lst_tpl))

  
  
'''
run:
  
(1, 3)
  
'''

 



answered Feb 7 by avibootz

Related questions

2 answers 229 views
...