“wie man ein Python -Programm schließt” Code-Antworten

Python Sys Halt

import sys
#put your code here
sys.exit
Average Anteater

So stoppen Sie das Programm in Python

import sys

sys.exit()
Expensive Eagle

Stop -Verfahren Python

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

wie man ein Python -Programm schließt

#Follow me on grepper :D
#Using break in loop types
while True:
  user= input("are you want to close program (y/n)? ")
  if user == "y": 
      break
  elif user=="n":
  	print("ok")
  
  else:
  	print("invalid")
Paimon

Ähnliche Antworten wie “wie man ein Python -Programm schließt”

Fragen ähnlich wie “wie man ein Python -Programm schließt”

Weitere verwandte Antworten zu “wie man ein Python -Programm schließt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen