Python

From wiki
Revision as of 17:02, 20 May 2018 by Hdridder (talk | contribs)
Jump to navigation Jump to search

Generic things:

The Python style guide is described in [PEP 8]

Modules

To add the location of your own modules to the python search path put it in the PYTHONPATH variable.

import sys
Number of system variables
sys.argv
List of everything on the commandline. sys.argv[0] is the program itself.
import getopt
Module to parse the commandline arguments (sys.argv). Default available