python | Argparse中action的可选参数store_true,store_false到底是什么意思?

store_true 是指带触发action时为真,不触发则为假

例如:

parser.add_argument('-c', action='store_true')

#python test.py -c => c是true(触发)
#python test.py => c是false(无触发)
posted @ 2020-08-09 22:48  Cindy's  阅读(4466)  评论(0编辑  收藏  举报