Jak odczytać plik z terminalu w kodzie wewnętrznym Python

import sys
inFile = sys.argv[1]
outFile = sys.argv[2]
19_Ankur Singh