“Ctrl C wyjątek Python” Kod odpowiedzi

Ctrl C wyjątek Python

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

Jak złapać Ctrl C w 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

Odpowiedzi podobne do “Ctrl C wyjątek Python”

Pytania podobne do “Ctrl C wyjątek Python”

Więcej pokrewnych odpowiedzi na “Ctrl C wyjątek Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu