os 모듈 - get_exec_path 함수(function) /// 설명 실행가능한 파일이 검색되어지는 디렉토리들의 리스트를 반환합니다. env는 환경변수에 있는 값이어야 하며, 기본값으로 os.environ 이 사용됩니다. ※ 형식 os.get_exec_path() os.get_exec_path(env=None) /// 예제 1 2 3 4 5 6 7 8 9 10 import os # default usage: os.environ print (os.get_exec_path()) # ['C:\\Users\\psych\\anaconda3\\envs\\Practice', 'C:\\Users\\psych\\anaconda3\\envs\\Practice\\Library\\mingw-w64\\bin', ... test_dict = { 'ALLUSERSPROFILE' : 'C:\\ProgramData' , 'APPDATA' : 'C:\\Users\\psych\\AppData\\Roaming' } print (os.get_exec_path(test_dict)) # ['.', 'C:\\bin'] Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –