1.
(2023高二上·丽水期末)
用Python算法描述鱼缸水温预警功能:当水温高于32度时,LED灯呈现“红色”;低于27度时,LED灯呈现“蓝色”;其余情况LED灯呈现“绿色”。
#通过传感器获取鱼缸内水温值,并存储到变量t中
LED="绿色"
if :
if t>32:
LED="红色"
else:
LED="蓝色"
print("LED 灯颜色显示:",LED)
为实现上述功能,划线处正确的Python表达式是( )
A . not(27<t<32)
B . t<27
C . t<27 or t>32
D . t<27 and t>32