module review assuming we want to import myfunctions into prg import myfunctions theAvg = myfunctions.avg([20,30,40]) print(theAvg) from myfunctions import avg theAvg = avg([20,30,40]) from myfunctions import * theMode = mode([20,20,40]) theAvg = avg([20,20,40]) advanced way - renaming from myfunctions import avg as average theAvg = average([20,30,40])