“Hentikan fungsi Python” Kode Jawaban

Program Keluar 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

Hentikan Program Python

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

Hentikan fungsi Python

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

Jawaban yang mirip dengan “Hentikan fungsi Python”

Pertanyaan yang mirip dengan “Hentikan fungsi Python”

Lebih banyak jawaban terkait untuk “Hentikan fungsi Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya