-
파이썬 기초3 if 문 weather = input("오늘 날씨는 어때요?") if weather == "비" or weather == "눈": print("우산을 챙기세요") elif weather =="미세먼지": print("마스크를 챙기세요") else: print("준비물 필요 없어요") # 위에 조건이 모두 만족되지 않을때 temp = int(input("기온은 어때요?")) if 30