作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有一个这样的程序:
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/
嘿。本周的一个教程,其中一个问题要求通过使用其他函数 formatLine 和 formatList 创建一个函数 formatLines,以格式化行列表。 我的代码是这样的; type Line =
我是一名优秀的程序员,十分优秀!