store_true 是指带触发action时为真,不触发则为假
例如:
parser.add_argument('-c', action='store_true') #python test.py -c => c是true(触发) #python test.py => c是false(无触发)