책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
import time
count = 1
try:
while True:
print(count)
count += 1
time.sleep(0.5)
except KeyboardInterrupt:
print('사용자에 의해 프로그램이 중단되었습니다.')
책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
import time
count = 1
try:
while True:
print(count)
count += 1
time.sleep(0.5)
except KeyboardInterrupt:
print('사용자에 의해 프로그램이 중단되었습니다.')
Comments