“Saia em Python” Respostas de código

Programa de saída 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

Saia em Python

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

Como sair do programa em Python

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

Respostas semelhantes a “Saia em Python”

Perguntas semelhantes a “Saia em Python”

Mais respostas relacionadas para “Saia em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código