2016-11-06 195 views
0

我在我的代碼,這個if語句:無效的語法錯誤蟒蛇2.7

 if h >= 65 and h < 75 
      lcd.set_cursor(0,1) 
      lcd.message("Medium") 

而且我得到這個錯誤:

if h >= 65 and h < 75 
        ^
SyntaxError: invalid syntax 

你能幫幫我,我不知道爲什麼會這樣發生。

+1

你缺少一個':'的'if'行的末尾。 –

+0

@WanderNauta儘管它是微不足道的,你應該做出答案。 –

+2

@GarethMcCaughan我真的投票結束這個問題('簡單的印刷錯誤'),但不想讓OP掛起。 –

回答

1

你還沒有把:在你的if語句的末尾。

if h >= 65 and h < 75: 
    lcd.set_cursor(0,1) 
    lcd.message("Medium") 
0

嘗試把一個:你的第一線,e.g:

if h >= 65 and h < 75: