Аргументы путаются с argparse

#python #argparse #getopt Вопрос: def main(argv): parser = argparse.ArgumentParser() parser.add_argument('p', 'projectType', type=str, help = 'c or c project type', choices=['c', 'c ']) parser.add_argument('i', 'inputfile', type=pathlib.Path, help = 'the input file…

Продолжить чтениеАргументы путаются с argparse