sys.argv
is a list.
This list is created by your command line, it's a list of your command line arguments.
For example:
in your command line you input something like this,
python3.2 file.py something
sys.argv
will become a list ['file.py', 'something']
In this case sys.argv[1] = 'something'