“Stoppfunktion Python” Code-Antworten

Python Exit -Programm

#Exit everywhere with error message
import sys
sys.exit("Code not Pythonical")

#Exit with a specific status
import os
os._exit()

#Exit in interpreter
quit()

#Exit in Interpreter but more user friendly
exit()
Pythoning Pythoneeir

Stop -Programm Python

# Do stuff
stop = input("Would you like to stop the program? ")
if stop == "y":
  exit()
else:
  # do stuff
TheProgrammer

Stoppfunktion Python

def some_fuction():
  print("This is all I do!")
  return
# A simple return will end a function
The Rambling Lank

Ähnliche Antworten wie “Stoppfunktion Python”

Fragen ähnlich wie “Stoppfunktion Python”

Weitere verwandte Antworten zu “Stoppfunktion Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen