1. 프로젝트 구성./Project ㄴ a ㄴ b.py ㄴ c ㄴ d.py 2. import 방법프로젝트 구성이 위와 같을 때, b.py 파일에서 d.py 파일을 import 하려면 아래의 코드 3줄을 c.py 파일에 추가하면 됨import syssys.path.insert(0, "./") # parent folder path appending# 예시sys.path.insert(0,"/Python_example_file") # use absolute path
다른 폴더 파일 import
1. 프로젝트 구성./Project ㄴ a ㄴ b.py ㄴ c ㄴ d.py 2. import 방법프로젝트 구성이 위와 같을 때, b.py 파일에서 d.py 파일을 import 하려면 아래의 코드 3줄을 c.py 파일에 추가하면 됨import syssys.path.insert(0, "./") # parent folder path appending# 예시sys.path.insert(0,"/Python_example_file") # use absolute path
2024.04.09