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