“Comment redémarrer un script Python” Réponses codées

script de redémarrage python

sys.stdout.flush()
os.execl(sys.executable, 'python', __file__, *sys.argv[1:])
Long Lobster

Comment redémarrer un script Python

import os

while 1:
    os.system("python main.py")
    print "Restarting..."
    exit()
NinjaPixel

Comment redémarrer un script Python

import os

os.system("python main.py")
exit()
Prickly Plover

Réponses similaires à “Comment redémarrer un script Python”

Questions similaires à “Comment redémarrer un script Python”

Plus de réponses similaires à “Comment redémarrer un script Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code