“Strg C Ausnahmepython” Code-Antworten

Strg C Ausnahmepython

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

Wie man Strg C in Python fängt

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

Ähnliche Antworten wie “Strg C Ausnahmepython”

Fragen ähnlich wie “Strg C Ausnahmepython”

Weitere verwandte Antworten zu “Strg C Ausnahmepython” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen