- 论坛徽章:
- 0
|
b.py
import subprocess
p = subprocess.Popen('f:\\a.py', stdin = subprocess.PIPE, \
stdout = subprocess.PIPE, stderr = subprocess.PIPE, shell = False)
p.stdin.write('123')
a.py
import os
a = raw_input('test')
print a
是这样吗?
但是报错了
F:\>2.py
Traceback (most recent call last):
File "F:\2.py", line 3, in <module>
stdout = subprocess.PIPE, stderr = subprocess.PIPE, shell = False)
File "E:\Python25\lib\subprocess.py", line 594, in __init__
errread, errwrite)
File "E:\Python25\lib\subprocess.py", line 816, in _execute_child
startupinfo)
WindowsError: [Error 193] %1 不是有效的 Win32 |
|