목록module (1)
New World
Traceback (most recent call last): File "", line 1, in from filter import sample ModuleNotFoundError: No module named 'filter' 역추적(가장 최근 파일"", 1행, in from filter import sample 모듈을 찾을 수 없는 오류: 'filter'라는 이름의 모듈은 없습니다. ModuleNotFoundError 는 해당 모듈이 없으면 생기는 오류이다. 여기에서 내가 쓴 from filter import sample에 대해서 알아보자. from 모듈 import 변수, 함수, 클래스 에서 가져온 것이다. 여기에서 생긴 오류는 module에 대해서 잘못 썼다고 나온 것이니 module을 자신이 생각..
Programming/Bug Zero
2020. 5. 31. 13:32