[ Python ] 절대 경로로 Import 하기

2019. 5. 1. 17:28분석 Python/구현 및 자료

728x90
import sys

sys.path.append('/home/test')

from define import TestClass

 

참고 사이트 : https://yujuwon.tistory.com/entry/%EC%A0%88%EB%8C%80-%EA%B2%BD%EB%A1%9C%EB%A1%9C-import-%ED%95%98%EA%B8%B0

 

절대 경로로 import 하기

절대 경로에 있는 파이썬 class를 import하려면 어떻게 해야 할까? /home/test/define.py 란 python 코드가 아래와 같이 있다고 가정하자. class TestClass: def testFunction(self, flag): print "test Function"..

yujuwon.tistory.com

 

728x90