Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python의 명령줄 인수

<시간/>

많은 프로그램을 실행하여 실행 방법에 대한 몇 가지 기본 정보를 제공할 수 있습니다. Python을 사용하면 -h −

로 이를 수행할 수 있습니다.
$ python -h
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Options and arguments (and corresponding environment variables):
-c cmd : program passed in as string (terminates option list)
-d : debug output from parser (also PYTHONDEBUG=x)
-E : ignore environment variables (such as PYTHONPATH)
-h : print this help message and exit
[ etc. ]

다양한 옵션을 허용하도록 스크립트를 프로그래밍할 수도 있습니다. 명령줄 인수는 고급 주제이며 Python 개념의 나머지 부분을 살펴본 후에 조금 더 공부해야 합니다.