python sort list of tuples lexicographically

28

sorted_by_length = sorted(list_,
                         key=lambda x: (x[0], len(x[1]), float(x[1])))

Comments

Submit
0 Comments