Please, I am told to find the maximum value of the list of keys in python but before that I was told to "create and sort a list of the dictionary's keys" and I did it with this code
sorted_keys = sorted(verse_dict.items(), key = lambda t: t[0])
But now, I am told to find the element with the highest value in the list of keys that I created.