Tagged Questions
1
vote
1answer
3k views
python exit infinite while loop with KeyboardInterrupt exception
My while loop does not exit when Ctrl+C is pressed. It seemingly ignores my KeyboardInterrupt exception. The loop portion looks like this:
while True:
try:
if subprocess_cnt <= ...