摘要:引入了一個的創建創建參數沒有開頭,創建的是在中顯示為而不是至少一個值幫助信息有開頭,創建的是最終訪問的成員名,默認是存儲的值空參數是默認參數是參數
Python argparse
python2.7/3.2 引入了一個 argparse 的module
https://docs.python.org/2/library/argparse.html
https://docs.python.org/3.5/library/argparse.html
import argparse # 創建parser parser = argparse.ArgumentParser(description="Process some integers.") # 創建參數 # "integers" -> 沒有 - 開頭,創建的是 positional argument # metavar="N" -> 在usage中顯示為 N, 而不是 integers # type=int # nargs="+" -> 至少一個值 # help="..." -> 幫助信息 parser.add_argument("integers", metavar="N", type=int, nargs="+", help="an integer for the accumulator") # "--sum" -> 有 - 開頭,創建的是 optional argument # dest="accumulate" -> 最終訪問的成員名,默認是sum # action="store_const" -> 存儲const的值 # const=sum -> 空參數是sum # default=max -> 默認參數是max parser.add_argument("--sum", dest="accumulate", action="store_const", const=sum, default=max, help="sum the integers (default: find the max)") # parse參數 parser.parse_args(["--sum", "7", "-1", "42"])java Commons CLI
commons-cli commons-cli 1.4-SNAPSHOT
// create Options object Options options = new Options(); // add t option options.addOption("t", false, "display current time"); // parse options CommandLineParser parser = new DefaultParser(); CommandLine cmd = parser.parse(options, args); if(cmd.hasOption("t")) { // print the date and time } else { // print the date }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/37821.html
摘要:引入了一個的創建創建參數沒有開頭,創建的是在中顯示為而不是至少一個值幫助信息有開頭,創建的是最終訪問的成員名,默認是存儲的值空參數是默認參數是參數 Python argparse python2.7/3.2 引入了一個 argparse 的modulehttps://docs.python.org/2/library/argparse.htmlhttps://docs.python.o...
摘要:命令行參數詳解查看的所有命令行參數,使用命令。我們將會對大部分常用的命令行參數進行一一解釋,以加深對能力的認識,更加快捷的在服務端命令行下使用或者調試各種因為對環境不熟悉而出現的問題。 PHP作為一門web開發語言,通常情況下我們都是在Web Server中運行PHP,使用瀏覽器訪問,因此很少關注其命令行操作以及相關參數的使用,但是,特別是在類Unix操作系統上,PHP可以作為一門腳本...
閱讀 1084·2021-10-08 10:04
閱讀 3523·2021-08-05 10:01
閱讀 2278·2019-08-30 11:04
閱讀 1794·2019-08-29 15:29
閱讀 839·2019-08-29 15:12
閱讀 1670·2019-08-26 12:11
閱讀 3115·2019-08-26 11:33
閱讀 1163·2019-08-26 10:23