반응형 while True1 uuid print # -*- coding: cp949 -*-'''author: sotedate:2013-10-28'''import timeimport 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 time.sleep(1).. 2013. 10. 28. 이전 1 다음 반응형