📜  python 重启脚本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:46.291000             🧑  作者: Mango

代码示例4
import os

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