Question: Write code in python: Complete the following program that is, write the functions getInputs, countSpaces (), minMax (), and printSummary (): def main (): fname
Complete the following program that is, write the functions getInputs, countSpaces (), minMax (), and printSummary (): def main (): fname = getInputs () #get the file name from the user infile = open (fname, "r") #open the file for reading resultList = list () #initialize result list to empty list for line in infile: num = countSpaces (line) #return the number of spaces in line result List .append (num) m, M = minMax (resultList) #compute the min and max spaces per line print Summary (m, M) # print the min and max spaces (including explanation)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
