반응형
|
|
# -*- coding: cp949 -*-
'''
author: sote
date:2013-10-28
'''
import time
import uuid
def main():
while True:
'무한루프'
time.sleep(1)
'딜레이 1초'
print uuid.uuid4()
'uuid 출력'
if __name__=="__main__":
try:
main()
'main 함수 호출'
except KeyboardInterrupt:
'키보드 인터럽트시 발생오류 패스'
pass
''' 예외 처리를 안하면 Ctrl+C를 눌렀을 때 아래와 같은 에러 발생함.
Traceback (most recent call last):
File "C:/Python27/t20131028.py", line 4, in <module>
time.sleep(1)
KeyboardInterrupt'''
반응형
'Python' 카테고리의 다른 글
우분투에 paramiko 설치시 오류 (0) | 2014.06.17 |
---|---|
Paramiko 라이브러리 사용하여 ssh 통신 및 hash 값 체크 (0) | 2014.06.16 |
for문 하나로 마름모 출력 * (0) | 2013.10.31 |
python api library (0) | 2013.10.30 |
python 150자로 출력하기 (0) | 2013.10.27 |