x = 7 if x == 6: print "x is six" elif x <= 7: print "x is less than or equal to seven" elif x >= 3: print "x is greater than or equal to three" else: print "x is",x # can never happen!