First Test with the Program Tester

Details:

Example:

For this example, assume that there is a file called fred.csv containing the following lines:

5,Hello,45,,12
43,-7,World of Mine!,12,a,9
Yo,3,200

Assume that you have program called blarp.py that performs the task outlined above.  Then you or I can call your program, from the command-line in the following way:

python  blarp.py  fred.csv  george.csv  1
or
python3 blarp.py  fred.csv  george.csv  1

...and it will succesfully write a file called george.py which contains the single line:

43,12,9

Suggestions: