gpt4 book ai didi

python - 如何在正在运行的 python 脚本中启动其他脚本(新线程或进程?)

转载 作者:行者123 更新时间:2023-12-01 00:48:37 25 4
gpt4 key购买 nike

如果我有一个这样的程序:

for i in range (25000):
do something
if i == 5000:
run new_script.py in a new thread/process
continue as before

我该怎么做?

最佳答案

将new_script.py的内容放入函数中并导入

from threading import Thread

from new_script import f

for i in range (25000):
do_something()
if i == 5000:
Thread(target=f, args=(arg1, arg2)).start()

关于python - 如何在正在运行的 python 脚本中启动其他脚本(新线程或进程?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56749134/

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