wiki-grav/pages/04.other/13.python/default.en.md
2022-06-25 11:41:24 +02:00

210 B

title
Python

[toc]

Exit on Keyboard Interrupt

try:
    <put your code here>
except KeyboardInterrupt:
    <stuff that needs to be done before exiting>
    # return SIGINT code
    exit(130)