Logo

Programming-Idioms

  • Python

Idiom #233 Read a command line string flag

Print the value of the flag -country passed to the program command line, or the default value "Canada" if no such flag was passed.

import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-country', default='Canada', dest='country')
args = parser.parse_args()
print('country is', args.country)
from sys import argv
try:
    i = argv.index('-country')
    print(argv[i + 1])
except:
    print('Canada')
import "flag"
var country = flag.String("country", "Canada", "user home country")
flag.Parse()
fmt.Println("country is", *country)

country has pointer type *string.
Call Parse only once, after all flags are defined and before flags are read.
Flags must be passed before the non-flag arguments.

New implementation...
< >
programming-idioms.org