“argument Python Argparse bez wartości” Kod odpowiedzi

argument Python Argparse bez wartości

To create an option that needs no value, set the action [docs]
of it to 'store_const', 'store_true' or 'store_false'.

Example:

parser.add_argument('-v', '--verbosity', action='store_true')

! No 'type=xy' is needed !
Jakin687

ArgParse jeden argument lub bez argumentu

parser.add_argument("-a", "--automatic", nargs="?", const=8, type=int)
Helpful Hamerkop

Odpowiedzi podobne do “argument Python Argparse bez wartości”

Pytania podobne do “argument Python Argparse bez wartości”

Więcej pokrewnych odpowiedzi na “argument Python Argparse bez wartości” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu