2022-06-25 11:41:24 +02:00
|
|
|
---
|
|
|
|
title: Python
|
2022-11-19 15:25:20 +01:00
|
|
|
visible: true
|
2022-06-25 11:41:24 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
[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)
|
2022-11-19 15:25:20 +01:00
|
|
|
```
|