python和或语句不工作

时间:2014-06-04 20:20:08

标签: python

if hello > 2 and < 55:
    print hello

为什么这段代码的安静无效?我知道它非常基本,但我无法理解或在互联网上找到答案为什么这不起作用,尽管寻找最后20分钟。

这是python版本2.7.3。

2 个答案:

答案 0 :(得分:3)

它应该是(这样做的一种方式):

hello = 3
if 2 < hello < 55:
    print hello

答案 1 :(得分:1)

if hello > 2 and hello < 55:
    print hello