efelinto

Untitled

May 18th, 2019
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. from subprocess import PIPE, Popen
  2. p1 = Popen(["python", "exe1.py"], stdin=PIPE, stdout=PIPE, bufsize=1)
  3. p2 = Popen(["python", "exe2.py"], stdin=PIPE, stdout=PIPE, bufsize=1)
  4. p2 = Popen(["python", "exe3.py"], stdin=PIPE, stdout=PIPE, bufsize=1)
  5. while True:
  6.   print('true')
Advertisement
Add Comment
Please, Sign In to add comment