Insertion Sort

Write a program insertion_sort.py that includes an insertion sort(lst) function that takes the list lst and performs an insertion sort on it.

Include a main() function that creates a list, then calls the insertion_sort() function on that list. Display the list before and after sorting.