👉 기본 환경
- 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일 경우, 실행되어야 하는 부분을 들여쓰기하여 작성
'Python > Python with Error' 카테고리의 다른 글
[해결 방법] AttributeError: 'list' object has no attribute 'len' (0) | 2023.08.13 |
---|---|
[해결 방법] SyntaxError: invalid syntax (0) | 2023.08.09 |
[해결 방법] ValueError: invalid literal for int() with base 10 (0) | 2023.08.08 |
[해결 방법] TypeError: unsupported operand type(s) for /: 'str' and 'int' (0) | 2023.08.08 |
[해결 방법] TypeError: can only concatenate str (not "int") to str (0) | 2023.08.08 |