- [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
즐거운 시간되세요
반응형
'python & 라즈베리파이' 카테고리의 다른 글
[python]파일 또는 디렉토리의 존재 여부 확인(checking the existence of a file or directory) (0) | 2020.10.28 |
---|---|
[python]sqlite3에 다수의 데이터를 한번에 입력(multiple insert in sqlite3) (0) | 2020.10.27 |
[Python]SQLIte3 연결 및 테이블 생성(SQL connection & create table) (0) | 2020.10.27 |
[Tkinter]canvas에서 이미지 변경하기(How to update an image on a Canvas?) (0) | 2020.10.26 |
[Python]'StartPage' object has no attribute 'scr_test' (0) | 2020.10.26 |