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(“建议穿短袖短裤”)