EASY7
[python] 매개변수 받아오기 본문
매개변수 받아오기
.py 파일을 실행할 때 매개변수가 필요할 때가 있다. test.py aaa 할 때 aaa는 sys.argv[1]로 가져올 수 있다.
1부터 시작하는 것에 주의해야한다.
import sys
for v in range(1, len(sys.argv)):
a1 = sys.argv[v]
참고 : https://needneo.tistory.com/95
Pycharm에서 매개변수 설정하기
Pycharm > Run > Edit Configurations 클릭
Parameters 입력
참고 : https://appia.tistory.com/511
'개발 공부 > Python' 카테고리의 다른 글
[python] zip 파일 압축 풀기 (0) | 2022.01.18 |
---|---|
[Python] 외부 파일 존재 여부 확인하기 (0) | 2022.01.18 |
[Python] 외부 파일 실행 (0) | 2022.01.18 |
[Qt5] Process finished with exit code -1073740791 (0xC0000409) 오류 (2) | 2021.12.25 |
[Pycharm] JSON string exceeds heap size limit (0) | 2021.09.13 |
Comments