Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Python 使用 msbuild.exe 从给定目录构建多个 VS 解决方案。我只想要特定的输出,但为了节省工作,解释结果的最佳方法是使用原始 ANSI 编码。
例子:
import os output = os.popen("MSBuild VSTests.sln").read() print output
这将打印输出,但没有颜色。有什么办法可以保存这个吗?
你不能,据我所知。颜色是控制台的属性,而不是输出文本本身的属性。这不像在 Linux 中,您在设置颜色的文本中获取转义字符并将其读回控制台保留颜色。
这样做的另一个副作用是你不能有一个单独的颜色,STDOUT如STDERR这个 SO 问题所示:
STDOUT
STDERR
在 Windows 中设置 stdout/stderr 文本颜色