How to find the minimum item value in a list of tuples with Python

2 Answers

0 votes
lst_tpl = [(8, 3), (2, 5), (6, 7), (1, 9)] 
  
mn = min(int(val) for i in lst_tpl for val in i) 
  
print(mn) 


'''
run:

1

'''

 



answered Dec 18, 2019 by avibootz
0 votes
from itertools import chain 

lst_tpl = [(8, 3), (2, 5), (6, 7), (1, 9)] 
  
mn = min(map(int, chain.from_iterable(lst_tpl))) 
  
print(mn) 


'''
run:

1

'''

 



answered Dec 18, 2019 by avibootz
...