I have two executable e.g A.exe, B.exe. Is it possible with python subprocess popen to the two executable communicate each other through stdin/stdout:
A = Popen("A.exe",...,stdin=B.stdout, stdout=PIPE)
B = Popen("B.exe",...,stdin=A.stdout, stdout=PIPE) ?
(where A.exe contains print/scanf pairs, and B.exe the scanf/printfs.)