My code consists of three major parts:
1-There are two functions whose second function depends on the outputs of the first function
2-And these two are in a while
def ff(x,y):
do something
return h,b
def qq(h,b):
do something
return z
while True:
p1 = process(target=ff, args = (x,y))
p2 = process(target=qq, args = (h,b))
do something
.
.
.
Now I'm going to run these two functions in multiprocess but I don't know how to transfer the outputs of the first function to the second
Thanks