I would like to sort this list of lists in descending order by the value of the seventh element in the lists:
unsorted_list = [["a", 5, 6, 3, 2, 4, 8], ["b", 5, 2, 7, 1, 10, 3],
["c", 2, 6, 3, 7, 11, 13]]
How can it be done? Thanks in advance!