首页 > 代码库 > Python 命令行输出的颜色设置

Python 命令行输出的颜色设置

\033[30m -- \033[37m 设置前景色
技术分享
print("\033[35m Hello,world! \033[0m")
View Code

技术分享

\033[40m -- \033[47m 设置背景色 
技术分享
print("\033[45m Hello,world! \033[0m")
View Code

技术分享

高亮显示、下划线、反白显示

技术分享
print("\033[31m Hello,world! \033[0m")
print("\033[1;31m Hello,world! \033[0m")
print("\033[7;31m Hello,world! \033[0m")
View Code

技术分享

print("\033[1;31;40m Hello,world! \033[0m")

技术分享

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


Python 命令行输出的颜色设置