👉 기본 환경
- Language: Python
- IDE: Replit
⌨️ 코드
1
2
3
4
5
|
if height=120:
print("Yes!");
else :
print("No");
|
🖨️오류
SyntaxError: invalid syntax
📡 원인
if 조건문의 내용은 boolean 타입의 true, false로 반환될 수 있어야 함
📰 해결 방법
1
2
3
4
5
|
if height>=120:
print("Yes!");
else :
print("No");
|
true/false를 반환할 수 있도록 부등호 추가
1
2
3
4
5
|
if height==120:
print("Yes!");
else :
print("No");
|
true/false를 반환할 수 있도록 등호 추가
'Python > Python with Error' 카테고리의 다른 글
[해결 방법] IndexError: list index out of range (0) | 2023.08.13 |
---|---|
[해결 방법] AttributeError: 'list' object has no attribute 'len' (0) | 2023.08.13 |
[해결 방법] IndentationError: expected an indented block (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 |