# ShowArrays.py """ Contains functions that can be used to get practice with arrays.""" from random import randint as randi def randiList(L,R,n): """ Returns a length-n list of random integers selected from the interval [L,R]. PreC: L, R, and n are ints with n>0 and L