· store_true 是指带触发 action 时为真,不触发则为假, 即默认 False ,传参 则 设置为 True
· store_false 则与之相反
以代码为例:
import sys
import argparse
def parse_args():
parser = argparse.ArgumentParser(description='run a test ')
parser.add_argument('-t', '--threshold', type=float, default=100.0, help='blurry threshold')
parser.add_argument('-f', '--first', action='store_true', help='default False')
parser.add_argument('-s', '--second', action='store_false', help='default True')
return parser.parse_args()
if __name__ == '__main__':
assert sys.version_info >= (3, 6), sys.version_info
args = parse_args()
print(args.first)
print(args.second)
运行1:
python test.py
结果
False
True
运行2:文章来源:https://www.toymoban.com/news/detail-608448.html
python test.py --f --s
结果2:文章来源地址https://www.toymoban.com/news/detail-608448.html
True
False
到了这里,关于action=store_true和store_false理解及实战测试的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!