Python getopt命令列引數模組

2021-09-06 10:52:37 字數 503 閱讀 1855

getopt模組專門用來處理命令列引數

getopt模組有兩個函式,兩個屬性

函式:

getopt.getopt

getopt.gnu_getopt

屬性:

getopt.error

getopt.getopterror

getopt.getopt(args, shortopts/longopts=)

引數args一般是sys.argv[1:]——冒號為列表分片功能,表示取第乙個元素後的值

shortopts:省略式引數,輸入格式為"-「加上單個字母,例如: -h (help) -p (port) 「hp:」 h和p代表引數名, 』 : '代表後面是否要引數

longopts:完整式引數,格式為」–"加上乙個單詞 ,例如:-help -port [「help」,「port=」] help和port代表引數 '='代表是否要引數

python getopt 獲取命令列引數

python 中 getopt 模組,該模組是專門用來處理命令列引數的函式 getopt args,shortopts,longopts args一般是sys.argv 1 shortopts 短格式 longopts 長格式 命令列中輸入 python test.py i 127.0.0.1 p ...

python getopt 命令列引數解析

新建乙個argtest.py檔案,輸入以下 import sys print sys.argv 隨後在命令提示符中執行python argtest.py a b c 1 a b 1,2 a b 會輸出 argtest.py a b c 1 a b 1,2 a b 可以看出來引數的提取規則 以上幾條規...

命令列 Git Bash命令列小結

展示當前完整路徑pwd 建立資料夾mkdir 建立檔案touch 刪除資料夾rm rf 刪除檔案rm 重新命名mv 展示當前路徑下檔案 除了隱藏檔案 ls 展示當前路徑下所有檔案ls a 展示當前路徑下所有檔案以及詳細資訊ls al 轉至某目錄cd 根目錄 上級目錄.當前目錄.檢視檔案cat 檔名稱...