본문 바로가기
Python/Python with Error

[해결 방법] SyntaxError: invalid syntax

by HJ0216 2023. 8. 9.

👉 기본 환경

- 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를 반환할 수 있도록 등호 추가