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