Recent Posts
Recent Comments
목록IndentationError: unindent does not match any outer indentation level (1)
HEROJOON 블로그(히로블)
[python] inconsistent use of tabs and spaces in indentation 에러 해결
파이썬 코드에서 아래와 같은 에러 발생 IndentationError: unindent does not match any outer indentation level 원인: 번역하면 들여쓰기가 잘못되었다고 합니다. Tab, Space를 섞어 쓰거나 Tab을 사용할때 발생되는 오류입니다. 해결: Tab, Space를 하나도 통일해줍니다. 그래도 에러가 발생했을 경우에는 에디터 내부에서 Tab, Space를 자동으로 보이기 좋게 바꿔주는 경우가 있는데 이 부분에서 오류가 났을 수 있습니다. 실제 메모장으로 코드를 열어보면 정렬이 들쑥날쑥인 경우가 있어요. 이럴 경우에는 메모장으로 코드를 열어서 들여쓰기 정렬을 맞춰줍니다.
Python
2022. 3. 26. 02:26