gpt4 book ai didi

python - 是否可以在子进程中运行函数而无需线程或编写单独的文件/脚本。

转载 作者:IT老高 更新时间:2023-10-28 20:24:48 26 4
gpt4 key购买 nike

import subprocess

def my_function(x):
return x + 100

output = subprocess.Popen(my_function, 1) #I would like to pass the function object and its arguments
print output
#desired output: 101

我只找到了有关使用单独脚本打开子进程的文档。有谁知道如何传递函数对象,甚至是传递函数代码的简单方法?

最佳答案

我认为您正在寻找更像多处理模块的东西:

http://docs.python.org/library/multiprocessing.html#the-process-class

子进程模块用于生成进程并使用它们的输入/输出执行操作 - 不用于运行函数。

这是您的代码的 multiprocessing 版本:

from multiprocessing import Process, Queue

# must be a global function
def my_function(q, x):
q.put(x + 100)

if __name__ == '__main__':
queue = Queue()
p = Process(target=my_function, args=(queue, 1))
p.start()
p.join() # this blocks until the process terminates
result = queue.get()
print result

关于python - 是否可以在子进程中运行函数而无需线程或编写单独的文件/脚本。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2046603/

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