python 杂七杂八 :
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 杂七杂八 :相关的知识,希望对你有一定的参考价值。
subprocess.Popen(...)
python3 实现代码: 备注write 要使用bytes 在最后结果转为str 显示时才不会出现 b‘‘ 这样的字节显示
import subprocess
obj = subprocess.Popen(["python3"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
obj.stdin.write(bytes(‘print(1)‘,encoding=‘utf-8‘))
# obj.stdin.write(‘print 2 \\n ‘)
# obj.stdin.write(‘print 3 \\n ‘)
# obj.stdin.write(‘print 4 \\n ‘)
obj.stdin.close()
cmd_out = obj.stdout.read()
obj.stdout.close()
cmd_error = obj.stderr.read()
obj.stderr.close()
print(str(cmd_out,encoding=‘utf-8‘))
print(cmd_error)
以上是关于python 杂七杂八 :的主要内容,如果未能解决你的问题,请参考以下文章