# 各种字体颜色
print("灰白色","\033[29;1m  hello  \033[0m")

print("白色","\033[30;1m  hello  \033[0m")

print("红色","\033[31;1m  hello  \033[0m")

print("黄绿色","\033[32;1m  hello  \033[0m")

print("土黄色","\033[33;1m  hello  \033[0m")

print("蓝色","\033[34;1m  hello  \033[0m")

print("紫色","\033[35;1m  hello  \033[0m")

print("绿色","\033[36;1m  hello  \033[0m")

print("灰色","\033[37;1m  hello  \033[0m")


linux/python 常用控制台打印颜色
# 各种背景颜色

print("背景白色:","\033[40;1m    hello  \033[0m")

print("背景红色:","\033[41;1m    hello  \033[0m")

print("背景黄绿色:","\033[42;1m  hello  \033[0m")

print("背景土黄色:","\033[43;1m  hello  \033[0m")

print("背景蓝色:","\033[44;1m    hello  \033[0m")

print("背景紫色:","\033[45;1m    hello  \033[0m")

print("背景深绿色:","\033[46;1m  hello  \033[0m")

print("背景灰色:","\033[47;1m    hello  \033[0m")


linux/python 常用控制台打印颜色

 


 

相关文章:

  • 2021-06-05
  • 2021-04-22
  • 2022-12-23
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2021-06-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
相关资源
相似解决方案