Answers for "restart python script from itself"

2

how to restart program in python

import os
import sys
os.execl(sys.executable, sys.executable, *sys.argv)
Posted by: Guest on November-30-2020
1

how to reboot a python script

import os

while 1:
    os.system("python main.py")
    print "Restarting..."
    exit()
Posted by: Guest on March-21-2020

Code answers related to "restart python script from itself"

Python Answers by Framework

Browse Popular Code Answers by Language