# ShowSelect.py """ Uses Selection Sort to illustrate how functions with list parameters work.""" from random import randint as randi def Select(x,i): """ Swaps the smallest value in x[i:] with x[i] PreC: x is a list of integers and i is an in that satifies 0<=i0 and L