python parser.add_argument() action

1:parser.add_argument('--xxxx', action='store_true', help='.....') 
2:parser.add_argument('--xxxx', action='store_true',default =ture, help='.....')
3:parser.add_argument('--xxxx', action='store_true',default =ture, help='.....')

有defalt的时候xxxx的值和default 一致,true 或false

没有default的时候xxxx的值,action = store_ture,则xxxx=false,action = store_false,xxxx=true

你可能感兴趣的:(python parser.add_argument() action)