Get your own Python server Result Size: 625 x 565
x
 
a = ("b", "g", "a", "d", "f", "c", "h", "e")
x = sorted(a)
print(x)
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']