“Detener la función Python” Código de respuesta

Programa de salida de Python

#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

Detener el programa Python

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

Detener la función Python

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

Respuestas similares a “Detener la función Python”

Preguntas similares a “Detener la función Python”

Más respuestas relacionadas con “Detener la función Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código