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

2 Answers

0 votes
from itertools import chain 

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



'''
run:

9

'''

 



answered Dec 18, 2019 by avibootz
0 votes
lst_tpl = [(8, 3), (2, 9), (6, 7), (1, 5)] 
  
mx = max(int(val) for i in lst_tpl for val in i) 
  
print(mx) 



'''
run:

9

'''

 



answered Dec 18, 2019 by avibootz
...