[python] class import하기

HyunDong Lee·2021년 4월 4일
0

python

목록 보기
1/6
post-thumbnail

같은 폴더에 존재하는 파이썬 파일 import

/dir/main.py 에서 /dir/class.py를 import 할 때

import class

다른 폴더에 존재하는 파이썬 파일 import

/dir/main.py에서 /doc/python/class.py를 import할 때

import sys
sys.path.insert(0, "/doc/python/class.py")
import class

하위 폴더에서 파이썬 파일 import

/dir/main.py에서 /dir/python/class.py를 import 할 때

import python.class

0개의 댓글