Als «argparse» getaggte Fragen

87
Python argparse gegenseitige exklusive Gruppe

Was ich brauche ist: pro [-a xxx | [-b yyy -c zzz]] Ich habe es versucht, aber es funktioniert nicht. Könnte mir jemand helfen? group= parser.add_argument_group('Model 2') group_ex = group.add_mutually_exclusive_group() group_ex.add_argument("-a", type=str, action = "store", default = "",...