码迷,mamicode.com
首页 > 编程语言 > 详细

Python输出带颜色文字

时间:2017-11-09 21:05:18      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:分享   print   color   str   his   src   img   images   红色   

print()输出颜色提示

显示颜色格式:\033[显示方式;字体色;背景色m......[\033[0m]

-------------------------------------------
-------------------------------------------
字体色     |       背景色     |      颜色描述
-------------------------------------------
30        |        40       |       黑色
31        |        41       |       红色
32        |        42       |       绿色
33        |        43       |       黃色
34        |        44       |       蓝色
35        |        45       |       紫红色
36        |        46       |       青蓝色
37        |        47       |       白色
-------------------------------------------
-------------------------------
显示方式     |      效果
-------------------------------
0           |     终端默认设置
1           |     高亮显示
4           |     使用下划线
5           |     闪烁
7           |     反白显示
8           |     不可见
-------------------------------

例:

print(‘This is a \033[1;35m test \033[0m!‘)
print(‘This is a \033[1;32;43m test \033[0m!‘)
print(‘\033[1;33;44mThis is a test !\033[0m‘)

输出结果:

技术分享

 

Python输出带颜色文字

标签:分享   print   color   str   his   src   img   images   红色   

原文地址:http://www.cnblogs.com/jadexia/p/7810973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!