How would I pass in an input file to a Python script from the command line, like this:
python mycode.py inputFile inputParameter
How would I pass in an input file to a Python script from the command line, like this:
python mycode.py inputFile inputParameter
If you are trying to read it in python:
f = open('workfile', 'r')