2

我正在使用subprocess运行命令(来自衍生的守护程序)并尝试将结果写入文件。来自的结果字符串Popenbytestring。在写入文件之前,如何将其格式化为人类可读的内容?使用python3.2

试过:

print (x,file=o)
f.write(str(rc.so))
print (str(rc.so) + "\n")

没有什么最终看起来可读..

可疑代码:

  rc = subprocess.Popen([cmd], shell=True, stdout=subprocess.PIPE,   stderr=subprocess.PIPE)
  x = rc.stdout.readlines()
  rc.so, rc.se = rc.communicate()
  with open(of,'w') as o, open(ef,'w') as e:
     print (str(rc.so) + "\n",file=o)
4

1 回答 1

3

你需要解码它:

my_byte_string.decode('utf-8')

utf-8 可能不是适合您情况的最佳解码选择,它是众多可用选项之一。

这样打印语句应该更像:

print (rc.so.decode('utf-8') + "\n",file=o)
于 2012-11-28T22:01:58.457 回答