“Pare a função 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

Pare o programa Python

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

Pare a função python

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

Respostas semelhantes a “Pare a função python”

Perguntas semelhantes a “Pare a função python”

Mais respostas relacionadas para “Pare a função python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código