Change compute stats2 | Computer Science homework help
Change compute_stats2.py so that it takes a single command line argument that is an integer
specifying which whitespace separated column it should process. For the user, column numbers
start at 1.
Since the program is going to be processing the whole file rather than just a single column of
numbers, we will use the csv module to parse it. Read the csv.reader documentation to figure
out how to specify spaces as the delimiter in the file and how to skip over multiple delimiters in
a row (if you don’t do this, each individual space will be considered a delimiter, which is not
going to work well).
Finally, change your program so that it does not require the input values to be sorted already
(i.e., it should sort the values itself before passing to the compute_stats function).