Write a program merge_sort.py
that includes a merge_sort(lst)
function that takes the list lst
and performs a merge sort on it.
Include a main()
function that creates a list, then calls the merge_sort()
function on that list. Display the list before and after sorting.