본문 바로가기

Challenge/trouble shooting || else

파이썬 AttributeError

728x90
반응형

json 파일과 파이썬 딕셔너리에 관한 코드를 공부하고 있었는데...

 

자꾸 다음과 같은 에러가 발생했다.

 

AttributeError: partially initialized module 'json' has no attribute 'loads' (most likely due to a circular import)

 


 

열심히 구글링한 결과

 

현재 실행시킨 파일 이름이 import한 모듈의 이름과 같으면 다음과 같은 에러가 발생한단다..

 

그래서 원래 파일명인 json.py를 _json.py로 바꾸니

 

 

 

이번엔 오류 없이 원하는 값으로 잘 출력이 된다

728x90
반응형