반응형
weather = input("오늘 날씨는 어떄요? ") # input은 항상 문자열로 값을 받는다.
# if 조건 :
# 실행 명령문
if weather == "비" or weather == "눈":
print("우산을 챙기세요")
elif weather == "미세먼지" :
print("마스크를 챙기세요")
else :
print("준비물이 필요 없어요.")
temp = int(input("기온은 어떄요?"))
if 30 <= temp :
print("너무 더워요. 나가지 마세요")
elif 10 <= temp and temp < 30 :
print("괜찮은 날씨에요")
elif 0 <= temp < 10 :
print("외투를 챙기세요")
else :
print("너무 추워요. 나가지 마세요")
'language > Python' 카테고리의 다른 글
[Python] 파이썬 while문 반복문 (0) | 2020.08.26 |
---|---|
[Python] 파이썬 for문 반복문 (0) | 2020.08.25 |
[Python] 파이썬 자료구조의 변경 ( 리스트 / 세트 / 튜플 ) (0) | 2020.08.22 |
[Python] 파이썬 집합 (set /intersection/remove/difference/union) (0) | 2020.08.21 |
[Python] 파이썬 사전 ( dictionary ) (0) | 2020.08.19 |
댓글