본문 바로가기
Python/Python with Error

[해결 방법] IndentationError: expected an indented block

by HJ0216 2023. 8. 9.

👉 기본 환경

- Language: Python

- IDE: Replit

 

 

⌨️ 코드

1
2
3
4
5
if height>=120:
print("Yes!");
else :
  print("No");
 
 

 

 

🖨️오류

IndentationError: expected an indented block

 

 

📡 원인

if 조건이 true일 경우, 실행되어야하는 부분이 들여쓰기로 작성되어야 인식

 

 

📰 해결 방법

1
2
3
4
5
if height>=120:
  print("Yes!");
else :
  print("No");
 
 

true일 경우, 실행되어야 하는 부분을 들여쓰기하여 작성