gpt4 book ai didi

python - 如何从另一个 python 脚本运行 python 脚本而不让辅助脚本中断第一个脚本?

转载 作者:行者123 更新时间:2023-12-01 02:43:49 25 4
gpt4 key购买 nike

所以我有主要的 python 脚本,我想从我的主文件中调用另一个 python 脚本,但是,每当我这样做时,我调用的脚本都会超过原始脚本。有什么方法可以在后台调用 python 脚本以使其不中断控制台中的主脚本吗?

最佳答案

嗨,我为您制作了这个脚本,使用线程和子进程在后台运行其他 python 脚本(没有辅助脚本中断第一个脚本)

import threading
from subprocess import call
def thread_second():
call(["python", "secondscript.py"])
processThread = threading.Thread(target=thread_second) # <- note extra ','
processThread.start()

print 'the file is run in the background'

关于python - 如何从另一个 python 脚本运行 python 脚本而不让辅助脚本中断第一个脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45403193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com