1. 程式人生 > >python天天進步(1)--sys.argv[]用法

python天天進步(1)--sys.argv[]用法

在學python的過程中,一直弄不明白sys.argv[]的意思,雖知道是表示命令列引數,但還是有些稀裡糊塗的感覺。

今天又好好學習了一把,總算是大徹大悟了。

Sys.argv[]是用來獲取命令列引數的,sys.argv[0]表示程式碼本身檔案路徑,所以引數從1開始,以下兩個例子說明:

1、使用sys.argv[]的一簡單例項,

[python] view plain copy print?
  1. import sys,os  
  2. os.system(sys.argv[1])  
import sys,os os.system(sys.argv[1])

這個例子os.system接收命令列引數,執行引數指令,儲存為sample1.py

,命令列帶引數執行sample1.py notepad,將開啟記事本程式。

2這個例子是簡明python教程上的,明白它之後你就明白sys.argv[]了。

[python] view plain copy print?
  1. import sys  
  2. def readfile(filename):  #從檔案中讀出檔案內容
  3.     '''''Print a file to the standard output.'''
  4.     f = file(filename)  
  5.     whileTrue:  
  6.         line = f.readline()  
  7.         if len(line) == 
    0:  
  8.             break
  9.         print line, # notice comma  分別輸出每行內容
  10.     f.close()  
  11. # Script starts from here
  12. if len(sys.argv) < 2:  
  13.     print'No action specified.'
  14.     sys.exit()  
  15. if sys.argv[1].startswith('--'):  
  16.     option = sys.argv[1][2:]  
  17.     # fetch sys.argv[1] but without the first two characters
  18.     if option == 'version':  #當命令列引數為-- version,顯示版本號
  19.         print'Version 1.2'
  20.     elif option == 'help':  #當命令列引數為--help時,顯示相關幫助內容
  21.         print'''''/ 
  22. This program prints files to the standard output. 
  23. Any number of files can be specified. 
  24. Options include: 
  25.   --version : Prints the version number 
  26.   --help    : Display this help'''
  27.     else:  
  28.         print'Unknown option.'
  29.     sys.exit()  
  30. else:  
  31.     for filename in sys.argv[1:]: #當引數為檔名時,傳入readfile,讀出其內容
  32.         readfile(filename)  
import sys def readfile(filename): #從檔案中讀出檔案內容 '''Print a file to the standard output.''' f = file(filename) while True: line = f.readline() if len(line) == 0: break print line, # notice comma 分別輸出每行內容 f.close() # Script starts from here if len(sys.argv) < 2: print 'No action specified.' sys.exit() if sys.argv[1].startswith('--'): option = sys.argv[1][2:] # fetch sys.argv[1] but without the first two characters if option == 'version': #當命令列引數為-- version,顯示版本號 print 'Version 1.2' elif option == 'help': #當命令列引數為--help時,顯示相關幫助內容 print '''/ This program prints files to the standard output. Any number of files can be specified. Options include: --version : Prints the version number --help : Display this help''' else: print 'Unknown option.' sys.exit() else: for filename in sys.argv[1:]: #當引數為檔名時,傳入readfile,讀出其內容 readfile(filename)

儲存程式為sample.py.我們驗證一下:

1)命令列帶引數執行:sample.py –version輸出結果為:version 1.2

2)命令列帶引數執行:sample.py –help輸出結果為:This program prints files……

3)在與sample.py同一目錄下,新建a.txt的記事本檔案,內容為:test argv;命令列帶引數執行:sample.py a.txt,輸出結果為a.txt檔案內容:test argv,這裡也可以多帶幾個引數,程式會先後輸出引數檔案內容。