A.upper()B.lower()C.capitalize()D.title()E.swapcase()
A.sorted(lst)B.lst.sort()C.lst.sorted()D.sort(lst)E.lst.order()
A.lst[-1]B.lst[len(lst)-1]C.lst[5]D.lst.pop()E.lst.last()