Ctrl-C로 Python 스크립트를 죽일 수 없습니다 다음 스크립트를 사용하여 Python 스레딩을 테스트하고 있습니다. import threading class FirstThread (threading.Thread): def run (self): while True: print 'first' class SecondThread (threading.Thread): def run (self): while True: print 'second' FirstThread().start() SecondThread().start() 이것은 Kubuntu 11.10의 Python 2.7에서 실행됩니다. Ctrl+ C그것을 죽이지 않을 것입니다. 또한 시스템 신호 처리기를 추가하려고 시도했지만 도움이되지 않았습니다. im..