Contact: aviboots(AT)netvision.net.il
39,990 questions
51,935 answers
573 users
tpl_lst = ([7, 3, 2], [3, 2, 1], [9, 4, 5], [6, 0, 1]) tpl_lst = tuple((sorted(sub) for sub in tpl_lst)) print(tpl_lst) ''' run: ([2, 3, 7], [1, 2, 3], [4, 5, 9], [0, 1, 6]) '''