Answers for "how to close a python program"

2

python sys halt

import sys
#put your code here
sys.exit
Posted by: Guest on May-12-2020
14

how to stop the program in python

import sys

sys.exit()
Posted by: Guest on March-07-2020
1

stop procedure python

def some_fuction():
  print("This is all I do!")
  return
# A simple return will end a function
Posted by: Guest on February-27-2020
3

how to close an application from python

import os
os.close(filename);
Posted by: Guest on April-02-2020

Code answers related to "how to close a python program"

Python Answers by Framework

Browse Popular Code Answers by Language