I am a newbie programmer, so a little lost here.
I've written a small python function that is rather time consuming to run depending on my search area, which is expected.
After a certain threshold, about a million records my program always seems to get lost. Python shell is not responding, but CPU usage remains contstant at about 13%. Also I can't stop the program execution by KeyboardInterrupt
So my question: Is it possible to increase the CPU usage for my python program to make it run faster?
A side question: Any help on why python shell becomes unresponsive? I am not using excessive memory, I just need to be able to cycle through a large set as quickly as possible.