Python Sort List Tuples secara leksikografis

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