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优先赋值)
标签:args,false,python,parser,action,true,store From: https://www.cnblogs.com/chentiao/p/16783657.html