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

전체 경로가 주어지면 Python 모듈을 가져오는 방법은 무엇입니까?

<시간/>

전체 경로가 주어지면 Python 모듈을 가져오는 가장 쉬운 방법은 경로 변수에 경로를 추가하는 것입니다. 경로 변수에는 소스 파일에서 가져온 모듈을 찾기 위해 Python 인터프리터가 찾는 디렉토리가 포함됩니다.

예를 들어

import sys
sys.path.append('/foo/bar/my_module')
# Considering your module contains a function called my_func, you could import it:
from my_module import my_func
# Or you could import the module as a whole,
import my_module