python:console生成文本颜色/粗体
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:console生成文本颜色/粗体相关的知识,希望对你有一定的参考价值。
def color(t, c): return chr(0x1b)+"["+str(c)+"m"+t+chr(0x1b)+"[0m" def black(t): return color(t, 30) def red(t): return color(t, 31) def green(t): return color(t, 32) def yellow(t): return color(t, 33) def blue(t): return color(t, 34) def mangenta(t): return color(t, 35) def cyan(t): return color(t, 36) def white(t): return color(t, 37) def bold(t): return color(t, 1)
以上是关于python:console生成文本颜色/粗体的主要内容,如果未能解决你的问题,请参考以下文章
选择非粗体文本并更改其颜色(选定段落的)- MS Word VBA 宏