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优先赋值)
本文来自博客园,作者:海_纳百川,转载请注明原文链接:https://www.cnblogs.com/chentiao/p/16783657.html,如有侵权联系删除