控制台颜色 (Windows)
是否可以在 Windows 的 Python 中打印出不同颜色的东西?我已经启用了 ANSI.sys,但这似乎不起作用。
我希望能够以红色打印一行,以绿色打印下一行,等等。
Is it possible to print out things in different colors in Python for Windows? I already enabled ANSI.sys, but this does not seam to work.
I want to be able to print one line in red, and the next in green, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WConio 模块应该是完成此操作所需的全部内容。
它引用的常量实际上并未在页面上列出,而是位于 WConio.py 文件的顶部:
因此将文本前景色设置为红色的完整调用将是:
The WConio module should be all you need to accomplish this.
The constants it refers to are not actually listed on the page, but are at the top of the WConio.py file:
So a full call to set the text foreground colour to red would be: