1.在主进程使用
p.stdin.write("something ")
要有回车!要有回车!要有回车!
2.在子进程使用
data = raw_input()
读取数据,再用
import sys print 'something' sys.stdout.flush()
输出数据,记得要flush!
2016.7.25 附:又被坑了一次。。。
1.在主进程使用
p.stdin.write("something ")
要有回车!要有回车!要有回车!
2.在子进程使用
data = raw_input()
读取数据,再用
import sys print 'something' sys.stdout.flush()
输出数据,记得要flush!
2016.7.25 附:又被坑了一次。。。