比较运算符: >、=、<= 等等均为比较运算符 e.g.1 if temperature is greater than 30 it’s a hot day otherwise if it’s less than 10 it’s a cold day otherwise its neither hot nor cold Solution: temperature = 25 if temperature > 30: print(it's a hot day) elif temperature <