Threading Keyboard Interrupt issue

Chris Angelico rosuav at gmail.com
Wed May 29 11:47:20 EDT 2019


On Thu, May 30, 2019 at 1:45 AM nihar Modi <niharmodi712 at gmail.com> wrote:
>
> I have written a simple code that involves threading, but it does not go to
> except clause after Keyboard interrupt. Can you suggest a way out. I have
> pasted the code below. It does not print 'hi' after keyboard interrupt and
> just stops.

Threads allow multiple things to run at once. The entire *point* of
spinning off a new thread is that the main code keeps going even while
the thread runs. They are independent.

ChrisA



More information about the Python-list mailing list