穿衣指数是根据自然环境对人体感觉温度影响最主要的天空状况、气温、湿度及风等气象条件,对人们适宜穿着的服装进行分级,以提醒人们根据天气变化适当着装。下列是李明根据穿衣指数编写的代码,说法正确的是( )
temp=float(input(“请输入今天的平均气温:”))
if temp<5:
print(“建议穿厚款羽绒服”)
elif temp>=5 and temp<10:①
print(“建议穿棉衣”)
elif temp>=10 and temp<15:
print(“建议穿毛衣”)
elif temp>=15 and temp<20:②
print(“建议穿风衣”)
elif temp>=20 and temp<30:
print(“建议穿长袖或短袖T恤”)
elif temp>=30:
print(“建议穿短袖短裤”)