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

 本文转自阿汐 51CTO博客,原文链接:http://blog.51cto.com/axiii/301205,如需转载请自行联系原作者


上一篇:PowerDesigner的样式设置


下一篇:解决eclipse2020+Tomcat10 web.xml 保存时缓慢