November 2017
Beginner to intermediate
204 pages
5h 23m
English
So far, you have specified the file names directly inside the program. Alternatively, it is possible to write your program so that you can specify the names of the input and output files in the Terminal when the program is run. This is particularly useful if you need to run the same program several times with different input datasets and collect several different output files.
The sys module allows you to access an array of strings that correspond to the parameters entered in the Terminal when a program is run. To get a sense for how this works, you can use create a basic program as follows to import the sys module and print out the parameter array:
import sysprint(sys.argv)
You can specify ...
Read now
Unlock full access