Sys. System call - JulTob/Python GitHub Wiki

Library sys builds on the linux system to use python scripts as script calls.

from sys import argv

script, arg1, arg2, argn = argv


import sys

print('The command line arguments are:')
for i in sys.argv:
  print(i)

print('\n\nThe PYTHONPATH is', sys.path, '\n')