本人小白一枚,现在需要调用子程序,传入两个list到子程序,输出两个list返回到主程序,有没有哪位好心人告诉我怎么弄???,以下是我用简单数据做的测试程序,输入为x=[1,2,3],y=[2,4,6], 输出为a和b
主程序 test1:
import os
import sys
import pandas as pd
import subprocess
from subprocess import PIPE,Popen
p=subprocess.Popen('F:/模拟/python控制/test2.py',stdin=PIPE,stdout=PIPE,stderr=PIPE,shell=True)
x=[1,2,3]
y=[2,4,6]
p.stdin.write([x,y])
[a,b]=p.stdout.readline()
p.stdout.flush()
err=p.stderr.readline()
p.stderr.flush()
子程序 test2:
import sys
x=sys.stdin.readline()
a=[0,0,0]
b=[0,0,0]
for i in range(3):
a[i]=x[i]-y[i]
b[i]=x[i]-y[i]
sys.stdout.write(a,b)
sys.stdout.flush()