A
A
Andrey Gorbik2018-11-07 14:08:51
Python
Andrey Gorbik, 2018-11-07 14:08:51

How to properly terminate threads on KeyboardInterrupt?

I want to simply exit the program using KeyboardInterrupt
, but I don’t understand where to handle this exception.

from threading import Thread
from time import sleep

def worker(i):
    while True:
        print("worker {}".format(i))
        sleep(i)

threads = [Thread(target=worker, args=(i,)) for i in range(1, 4)]
for t in threads:
    t.start()

for t in threads:
    t.join()

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Tikhonov, 2018-11-07
@and_gorbik

https://docs.python.org/3/library/threading.html
If KeyboardInterrupt processing is not needed by itself, but you want the process to be terminated by Ctrl + C, declare all threads as daemons.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question