首页 > 代码库 > python 杂七杂八 :
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 杂七杂八 :
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。