python讓程式重複執行的方法:1、報錯後,重新啟動【.py】文件,繼續執行;2、重複執行本【.py】文件中的內容;3、異常呼叫函數本身。
python讓程式重複執行的方法:
##方法一:
.py文件,繼續執行
while 1: run_ticker = 'python ticker.py' run_depth = 'python depth.py' run_depth_pct = 'python depth_pct.py' run_trade = 'python trade.py' os.system(run_depth_pct)
方法二:
重複執行本.py檔案中的內容os.execvp(sys.executable, [sys.executable]+sys.argv)
python = sys.executable # 获取当前执行python os.execl(python, python, *sys.argv) # 执行命令
方法三:
異常呼叫函數本身def restart(): try: fun() except EOFError as e: print(e) finally: restart()
相關學習推薦:
以上是怎麼讓程式重複執行的詳細內容。更多資訊請關注PHP中文網其他相關文章!