summaryrefslogtreecommitdiff
path: root/progs/a12.py
blob: 8c18cbde7c897557f95f38e688fb1d21f1b96516 (plain)
1
2
3
def maximum_value(test_list):
  res = [(key, max(lst)) for key, lst in test_list]
  return (res)