Python 실행 시 Argument 받기 (sys.argv)
·
카테고리 없음
Python 실행 시 Argument 받기 (sys.argv) Python 스크립트 실행 시 인자값(Argument)을 전달받는 방법에 대해서 확인해보겠습니다. https://docs.python.org/3/library/sys.html#sys.argv/ sys.argv The list of command line arguments passed to a Python script. argv[0] is the script name (it is operating system dependent whether this is a full pathname or not). If the command was executed using the -c command line option to the interpreter, a..