function main (given below) creates the two lists, prints the original lists, calls each of the functions, and displays the output after each function call. Note that all changes are to be done to the original list, even within the function calls. Save your code in a file called mythical_sort_fun.py.
Pods sorted by their Zones only: ['Kelpie', 'Sea Serpents', 'Loch Ness Monsters', 'Unicorns', 'Centaurs', 'Manticore', 'Fairies', 'Elves', 'Sprites', 'Werewolf', 'Cyclops', 'Dragons'] Sorted Zones: [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4] Pods sorted by their Zones and Pod Names: ['Kelpie', 'Loch Ness Monsters', 'Sea Serpents', 'Centaurs', 'Manticore', 'Unicorns', 'Elves', 'Fairies', 'Sprites', 'Cyclops', 'Dragons', 'Werewolf'] Sorted Zones: [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4]