파이썬(Python)/오류사전 (about error)

[파이썬_오류사전] expected an indented block

DA Damla 2022. 7. 4. 22:25

expected an indented block

파이썬 실슴을 하다가 갑자기 이 오류가 나타났다.

이것저것 만져봐도 같은 오류가 나왔다.

 

indent는 들여쓰기 이다.

 

즉 들여쓰기된 블럭에 문제가 있다는 의미였다.

 

indent

동사

1

(글의 행을) 들여 쓰다

The first line of each paragraph should be indented.

각 단락의 첫 행은 들여 써야 한다.

출처 네이버 영어사전


구글링을 해보면

The IndentationError: expected an indented block error indicates that you have an indentation error in the code block, which is most likely caused by a mix of tabs and spaces.

이에러 표시는 너의 코드 블럭안의 들여쓰기에서 문제가 있는 것으로 보인다. 이런 오류는 텝과 띄어쓰기(스페이스가) 혼합되어 야기된다.

파이썬은 들여쓰기가 매우 중요한 언어중 하나라고 한다.

SQL은 아니지만;;

이런 오류가 있다면 들여쓰기가 잘못되어 있는 것은 아닌지 먼저 확인하면 해결할 수 있을 것이다.

 

출처

https://www.yawintutor.com/indentationerror-expected-an-indented-block-in-python/#:~:text=The%20python%20IndentationError%3A%20expected%20an,mix%20of%20tabs%20and%20spaces.