Get your own Python server Result Size: 625 x 565
x
 
a = ("Jenifer", "Sally", "Jane")
x = sorted(a, key=len)
print(x)
['Jane', 'Sally', 'Jenifer']