“Ctrl C Exception Python” Código de respuesta

Ctrl C Exception Python

#Try the following:
try:
    # DO THINGS
except KeyboardInterrupt:
    # quit
    sys.exit()
Razoltheren

Cómo atrapar Ctrl C en Python

import signal
import time
 
def handler(signum, frame):
    res = input("Ctrl-c was pressed. Do you really want to exit? y/n ")
    if res == 'y':
        exit(1)
 
signal.signal(signal.SIGINT, handler)
 
count = 0
while True:
    print(count)
    count += 1
    time.sleep(0.1)
Arsham

Respuestas similares a “Ctrl C Exception Python”

Preguntas similares a “Ctrl C Exception Python”

Más respuestas relacionadas con “Ctrl C Exception Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código