Contact: aviboots(AT)netvision.net.il
39,844 questions
51,765 answers
573 users
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 '''
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 '''