Result Size: 625 x 571
demo_ref_sorted.py:
x
 
a = ("b", "g", "a", "d", "f", "c", "h", "e")
x = sorted(a)
print(x)
C:\Users\My Name>python demo_sorted.py
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']