본문 바로가기
PYTHON(파이썬)/파이썬 기초

예시로 배우는 파이썬 (입력 - INPUT)

by eplus 2024. 10. 7.

################################
# Python 기초 7 : 입력문
# eplus(http://www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조
################################
weather = input("오늘 날씨는?")

if weather == "비" or weather == "눈":
    print("우산을 챙기세요")
elif weather == "미세먼지":
    print("마스크를 챙기세요")
else:
    print("준비물 필요 없어요")

temp = int(input("기온은 어때요?"))
if temp >= 30:
    print("너무 더워요")
elif temp > 10 and temp < 30 :
    print("좋아요")
else:

    print("???")

ePython-06.py
0.00MB

 

 

728x90
반응형