“Salir en 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

Salir en Python

import sys
msg = "bye bye"
sys.exit(msg)
# you can use it with out a msg
Doubtful Dingo

Cómo salir del programa en Python

import sys sys.exit()	//This will exit the python program
Repulsive Rabbit

Respuestas similares a “Salir en Python”

Preguntas similares a “Salir en Python”

Más respuestas relacionadas con “Salir en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código