使用argparse 解析布林值
在argparse 中,解析布林命令列參數是常見任務,但嘗試時會出現常見的陷阱使用type=bool 參數解析“--foo True”或“--foo False”等值。令人驚訝的是,即使使用空字串作為參數(例如“--foo “”),解析的值也會計算為True。
為了正確的布林解析,argparse 提供了兩個推薦的方法:
規範方法:
使用argparse 原生支援的'--feature' 和'--no-feature' 語法:
<code class="python">parser.add_argument('--feature', action=argparse.BooleanOptionalAction)</code>
在3.9 以下的Python 版本中:
<code class="python">parser.add_argument('--feature', action='store_true') parser.add_argument('--no-feature', dest='feature', action='store_false') parser.set_defaults(feature=True)</code>
使用此方法,「--feature」的存在會將值設為True,而「--no-feature」將其設定為False。為根據需要,可以使用自訂類型轉換函數:ast.literal_eval:
或者,可以建立使用者定義的函數:
以上是如何在argparse中正確解析布林值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!