sys.argv变量是一个list,
执行
python abc.py a b c
时,
sys.argv[0]为 abc.py
sys.argv[1]为 a
sys.argv[2]为 b
sys.argv[3]为 c