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