더북(TheBook)

에러 종류

속성 에러 : AttributeError: ‘module’ object has no attribute …

에러 메시지

Traceback (most recent call last):

  File "<pyshell#18>", line 1, in <module>

    t.foward(50)

AttributeError: 'module' object has no attribute 'foward'

발생 이유

모듈의 함수나 변수를 잘못 입력했을 때 발생합니다.

해결 방법

함수나 변수의 철자와 대소문자가 올바른지 확인한 후 수정합니다.

 

에러 종류

속성 에러 : AttributeError: ‘module’ object has no attribute …

에러 메시지

Traceback (most recent call last):

    File ".../turtle.py", line 1, in <module>

       import turtle as t 

    File ".../turtle.py", line 3, in <module>

       t.foward(50)

AttributeError: module 'turtle' has no attribute ...

발생 이유

입력한 파일을 turtle.py라는 이름으로 저장했을 때 발생합니다.

해결 방법

파일명 turtle.py는 거북이 모듈과 이름이 같아 충돌이 발생하기 때문에 turtle.py가 아닌 다른 이름으로 다시 저장하고, 이미 저장된 turtle.py를 삭제해야 합니다.

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.