작성
·
167
0
import sub.chapter06_02_모듈
print(chapter06_02_모듈.add(1,5))
Traceback (most recent call last):
File "C:/python_basic/chapter06_03_패키지.py", line 64, in <module>
print(chapter06_02_모듈.add(1,5))
NameError: name 'chapter06_02_모듈' is not defined
모듈이 작동하기 위해서는 두 개의 패키지(ex. sub > sub1 > chapter06_02_모듈) 안에 모듈이 들어가야 하나요? 단순히 sub 패키지 안에 chapter_06_02_모듈 이 들어가면 안 되는지 궁금합니다.