728x90
반응형
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# String is written by Korean. | |
import sys | |
while True: | |
try: | |
x = int(raw_input("정수를 입력하시오: ")) | |
break | |
except ValueError: | |
print "정수가 아닙니다. 다시 입력하세요..." | |
if x < 0: | |
x = 0 | |
print '음수가 영으로 바뀜' | |
elif x == 0: | |
print '영' | |
elif x == 1: | |
print '일' | |
else: | |
print '일보다큼' |
728x90
반응형
'Python' 카테고리의 다른 글
python embed test (0) | 2021.10.03 |
---|---|
python simple udp server (0) | 2021.10.03 |
python 컴포넌트를 pip로 손쉽게 업그레이드 (0) | 2018.12.29 |
Ubuntu 에서 python3와 pip3를 기본(default) python으로 설정하는 방법 (0) | 2018.12.24 |
헬로우 큐트 포 파이썬 (Hello Qt for Python) (0) | 2018.05.19 |