python:console生成文本颜色/粗体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:console生成文本颜色/粗体相关的知识,希望对你有一定的参考价值。

  1. def color(t, c):
  2. return chr(0x1b)+"["+str(c)+"m"+t+chr(0x1b)+"[0m"
  3. def black(t):
  4. return color(t, 30)
  5. def red(t):
  6. return color(t, 31)
  7. def green(t):
  8. return color(t, 32)
  9. def yellow(t):
  10. return color(t, 33)
  11. def blue(t):
  12. return color(t, 34)
  13. def mangenta(t):
  14. return color(t, 35)
  15. def cyan(t):
  16. return color(t, 36)
  17. def white(t):
  18. return color(t, 37)
  19. def bold(t):
  20. return color(t, 1)

以上是关于python:console生成文本颜色/粗体的主要内容,如果未能解决你的问题,请参考以下文章

代码过滤富文本的粗体 斜体 颜色 空格

Zend PDF:如何打印粗体文本或其他颜色的文本等?

选择非粗体文本并更改其颜色(选定段落的)- MS Word VBA 宏

单击导航链接时更改文本颜色

VirtualTreeView - 同一节点中不同颜色的文本

如何建立一个仅对该页有效的文本样式text.css,样式要求为:颜色#0000FF、楷体、大小24px,粗体。