0
읽을 수있는 argparse 인수 그래서 argparse 매우 좋다고 생각하지만 어떻게 argparse/python에서 이런 일을 할 수 있습니까? 예를 들어- 또는 -
:
myprog del <username> (remove only config entry)
myprog del -A <username> (remove all of the user...)
myprog add <username> (must be 1 sub-arg, not more)
myprog change <old-username> <to-new-username> (must be 2 sub-args, not more)
myprog list (no sub argument)
myprog list -A (list ALL)
[하위 명령] (https://docs.python.org/3/library/argparse.html#sub-commands)을 사용해 보았습니까? – Evert