Coding
Catching a KeyboardInterrupt Signal
Hey everyone, as I thought about writing the next post I came across the idea to explain what KeyboardInterrupt actually is and also how to catch it in Python 3.6. KeyboardInterrupt is a User Signal which is executed by User. As an example could be pressing CTRL+C. In detail, the Read more…