argparse2 Python 간단한 argparse 예제를 원합니다: 1개의 인자, 3개의 결과, Simple argparse example wanted: 1 argument, 3 results 질문 The documentation for the argparse python module, while excellent I'm sure, is too much for my tiny beginner brain to grasp right now. I don't need to do math on the command line or meddle with formatting lines on the screen or change option characters. All I want to do is "If arg is A, do this, if B do that, if none of the above show help and quit". 답변 이렇게 argparse를 사용하여 다중 인수로 수행할 수 있습니다: p.. 2023. 8. 1. Python Argparse 선택적 위치 인수?, Argparse optional positional arguments? 질문 나는 다음과 같이 사용할 수 있는 스크립트가 있습니다: usage: installer.py dir [-h] [-v] dir은 다음과 같이 정의된 위치 인수입니다: parser.add_argument('dir', default=os.getcwd()) 나는 dir이 선택 사항이 되기를 원합니다: 지정되지 않은 경우에는 cwd가 되어야합니다. 불행히도, dir 인수를 지정하지 않으면 Error: Too few arguments가 발생합니다. 답변 nargs='?'를 사용하십시오. (nargs='?') (또는 nargs='*'을 사용하여 둘 이상의 디렉토리가 필요한 경우) parser.add_argument('dir', nargs='?', default=os.getcwd()) 확장된 예: >>> impor.. 2023. 6. 27. 이전 1 다음