[python]No module named 'thunder_db.py'; 'thunder_db' is not a package

2020년 10월 27일 by 진아사랑해

    [python]No module named 'thunder_db.py'; 'thunder_db' is not a package 목차
반응형

thunder.py 라는 파일에 프로그램을 작성하고 main.py에서 사용하기 위해 import를 할 필요가 있다

이 import를 하는 경우에 .py 는 필요가 없다

import thunder.py 

라고 입력하면 위와 같은 에러가 발생한다.

 

이 에러를 제거하는 방법은 간단한다. 

.py를 제거한다

import thunder

이렇게 작성하면 끝

다른 디렉토리에 있으면 import 디렉토리명\thunder

 

즐거운 시간되세요

 

 

반응형