python parser.parse_args action=‘store_true‘ 和 ‘store_false’

store_true就是存储的值为true(store_false 就是存储的值为false),
用sh 命令触发值的设置:

parser.add_argument('-p', action='store_true', default=false)
#python test.py -p          => p 是true(触发设置)
#python test.py             => p 是false(无触发,default优先赋值)
 

 

posted @ 2022-10-12 10:32  海_纳百川  阅读(55)  评论(0编辑  收藏  举报
本站总访问量