if (blue_percentage > (red_percentage * 0.49)) and \
(red_percentage < ((blue_percentage / 1.44) + 1)) and \
(red_percentage > ((blue_percentage / 4.35)-1) and \
(blue_decimal > green_decimal) and \
(red_decimal > green_decimal):
print "<div>The hue is: <b>Purple</b>.</div>"
它说
:
是无效的语法。
如果我拿出线
(red_percentage > ((blue_percentage / 4.35)-1) and \
该程序工作得很好。我是在引起某种矛盾的陈述还是什么?我看不到。