성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] 그냥 RSS Reader 기능과 약간의 UI 편의성 때문에 사용...
[이종효] 오래된 소프트웨어는 보안 위협이 되기도 합니다. 혹시 어떤 기능...
[정성태] @Keystroke IEEE의 문서를 소개해 주시다니... +_...
[손민수 (Keystroke)] 괜히 듀얼채널 구성할 때 한번에 같은 제품 사라고 하는 것이 아...
[정성태] 전각(Full-width)/반각(Half-width) 기능을 토...
[정성태] Vector에 대한 내용은 없습니다. Vector가 닷넷 BCL...
[orion] 글 읽고 찾아보니 디자인 타임에는 InitializeCompon...
[orion] 연휴 전에 재현 프로젝트 올리자 생각해 놓고 여의치 않아서 못 ...
[정성태] 아래의 글에 정리했으니 참고하세요. C# - Typed D...
[정성태] 간단한 재현 프로젝트라도 있을까요? 저런 식으로 설명만 해...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>파이썬 - UnboundLocalError: cannot access local variable '...' where it is not associated with a value</h1> <p> 이 오류에 대한 재현 코드를 간단하게 다음과 같이 만들 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > def test(): <span style='color: blue; font-weight: bold'>raise Exception("test")</span> def get_result(): try: <span style='color: blue; font-weight: bold'>resp = test()</span> except: pass <span style='color: blue; font-weight: bold'>return resp</span> get_result() """ 실행 결과: Traceback (most recent call last): File "C:\sample\testconsole\test.py", line 15, in <module> get_result() File "C:\sample\testconsole\test.py", line 12, in get_result return resp <span style='color: blue; font-weight: bold'>UnboundLocalError: local variable 'resp' referenced before assignment</span> """ </pre> <br /> 원인은 "resp" 변수가 test 함수 내에서의 예외 발생으로 인해, 오류 메시지의 의미 그대로 바인딩되지 않은 채로 사용되었기 때문입니다.<br /> <br /> 이 상태에서 만약 test 함수 내에서 오류가 발생하지 않는다면,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > def test(): pass </pre> <br /> 정상적으로 resp는 (test 함수가 값을 반환하지는 않았지만) "None"으로 바인딩되므로 UnboundLocalError가 발생하지 않습니다.<br /> <br /> 따라서 예외가 발생했을 때의 문제까지 고려한다면 그전에 다음과 같이 명시적인 바인딩을 해주면 됩니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > def test(): raise Exception("test") def get_result(): <span style='color: blue; font-weight: bold'>resp = None</span> try: <span style='color: blue; font-weight: bold'>resp = test()</span> except: pass <span style='color: blue; font-weight: bold'>return resp</span> get_result() </pre> <br /> <hr style='width: 50%' /><br /> <br /> 참고로, 근래의 Python 3.11 버전에서는 UnboundLocalError 오류 메시지가 바뀌었습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > $ <span style='color: blue; font-weight: bold'>python3.11 test.py</span> Traceback (most recent call last): File "C:\sample\testconsole\test.py", line 17, in <module> get_result() File "C:\sample\testconsole\test.py", line 14, in get_result return resp ^^^^ <span style='color: blue; font-weight: bold'>UnboundLocalError: cannot access local variable 'resp' where it is not associated with a value</span> </pre> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
7785
(왼쪽의 숫자를 입력해야 합니다.)