EAT-SLEEP-CODE-REPEAT

Life is too short. Programming book is too thick. I am too lazy to practice all.

Python/Error

[파이썬 에러]IndentationError: unindent does not match any outer indentation level 의미/해결방법

codeho 2020. 12. 20. 21:30
반응형

[파이썬 에러] IndentationError: unindent does not match any outer indentation level 의미/해결방법

 

[파이썬 에러]IndentationError: unindent does not match any outer indentation level 의미/해결방법

12번 줄 에러 발생

 

[파이썬 에러]IndentationError: unindent does not match any outer indentation level 의미/해결방법

콘솔 창을 확인해보니 IndentationError(들여쓰기 오류) 였다.

2~10번까지는 탭 1칸(띄어쓰기 4칸)으로 들어쓰기 되어있지만, 12번 줄만 띄어쓰기 3칸으로 되어있다. 

함수 computeMinGong 구문 안에 return 있어야 하니, 들여쓰기를 맞춰주므로 해결할 수 있는 오류였다.

 

[파이썬 에러]IndentationError: unindent does not match any outer indentation level 의미/해결방법
[파이썬 에러]IndentationError: unindent does not match any outer indentation level 의미/해결방법

반응형