I write many small applications where I use
try:
print "always does this until I Ctrl+C"
Except KeyboardInterrupt:
print "finish program"
I just started moving away from using IDLE and downloaded PyScripter. However, CTRL + C no longer works. Can I still send using the built-in interpreter?
Pptim source
share