분석 Python/구현 및 자료
[ Python ] 절대 경로로 Import 하기
데이터분석뉴비
2019. 5. 1. 17:28
728x90
import sys
sys.path.append('/home/test')
from define import TestClass
절대 경로로 import 하기
절대 경로에 있는 파이썬 class를 import하려면 어떻게 해야 할까? /home/test/define.py 란 python 코드가 아래와 같이 있다고 가정하자. class TestClass: def testFunction(self, flag): print "test Function"..
yujuwon.tistory.com