返回顶部
首页 > 资讯 > 后端开发 > Python >Python终端显示彩色字符(封装了Co
  • 807
分享到

Python终端显示彩色字符(封装了Co

终端装了字符 2023-01-31 05:01:29 807人浏览 泡泡鱼

Python 官方文档:入门教程 => 点击学习

摘要

                      By qianghaohao(CodeNutter)          有时候需要在终端显示彩色的字符,即根据需要显示不同颜色的字符串,比如我们要在 终端打印一行错误提示信息,要把它弄成红色的

                      By qianghaohao(CodeNutter)
         有时候需要在终端显示彩色的字符,即根据需要显示不同颜色的字符串,比如我们要在
终端打印一行错误提示信息,要把它弄成红色的。其实这个在python中很好实现,使用转义
序列来实现不同颜色的显示,转义序列以ESC开头,它的ASCII码八进制为 \033。
               显示格式为:\033[显示方式;前景色;背景色m
         用这种原生的转义序列输出,在linux下完全支持,但是在windows下确存在兼容问题,比如在
win10下可以正常显示颜色,在win7下确不支持。因此可以使用Python标准库提供的colorama模块
输出彩色字体,这个模块是跨平台的,内部实现也是采用转义序列来显示颜色的,只不过对windows
平台做了特殊处理,因此完全兼容linux和windows各个版本。
         以下封装了一个Colored类,提供了两个版本,第一个版本采用原生的转义字符序列输出各种颜。
第二个版本用python标准库的colorama模块兼容windows和linux。当要在终端打印彩色字体时直接调
用对应的方法即可,很方便。
一.Colored版本1:采用原生的转义字符序列---对windows有的版本不支持(比如win7),linux完美支持
#coding:gbk
# ------------------------------------------------
#   python终端显示彩色字符类,可以调用不同的方法
# 选择不同的颜色.使用方法看示例代码就很容易明白.
# ------------------------------------------------
#
# 显示格式: \033[显示方式;前景色;背景色m
# ------------------------------------------------
# 显示方式             说明
#   0                 终端默认设置
#   1                 高亮显示
#   4                 使用下划线
#   5                 闪烁
#   7                 反白显示
#   8                 不可见
#   22                非粗体
#   24                非下划线
#   25                非闪烁
#
#   前景色             背景色            颜色
#     30                40              黑色
#     31                41              红色
#     32                42              绿色
#     33                43              黃色
#     34                44              蓝色
#     35                45              紫红色
#     36                46              青蓝色
#     37                47              白色
# ------------------------------------------------
class Colored(object):
    # 显示格式: \033[显示方式;前景色;背景色m
    # 只写一个字段表示前景色,背景色默认
    RED = '\033[31m'       # 红色
    GREEN = '\033[32m'     # 绿色
    YELLOW = '\033[33m'    # 黄色
    BLUE = '\033[34m'      # 蓝色
    FUCHSIA = '\033[35m'   # 紫红色
    CYAN = '\033[36m'      # 青蓝色
    WHITE = '\033[37m'     # 白色

    #: no color
    RESET = '\033[0m'      # 终端默认颜色

    def color_str(self, color, s):
        return '{}{}{}'.fORMat(
            getattr(self, color),
            s,
            self.RESET
        )

    def red(self, s):
        return self.color_str('RED', s)

    def green(self, s):
        return self.color_str('GREEN', s)

    def yellow(self, s):
        return self.color_str('YELLOW', s)

    def blue(self, s):
        return self.color_str('BLUE', s)

    def fuchsia(self, s):
        return self.color_str('FUCHSIA', s)

    def cyan(self, s):
        return self.color_str('CYAN', s)

    def white(self, s):
        return self.color_str('WHITE', s)

# ----------使用示例如下:-------------
color = Colored()
print color.red('I am red!')
print color.green('I am gree!')
print color.yellow('I am yellow!')
print color.blue('I am blue!')
print color.fuchsia('I am fuchsia!')
print color.cyan('I am cyan!')
print color.white('I am white')
颜色对比图(根据需要自己设置对应的值):
 
运行效果:
 
二.Colored版本2:采用python标准库的colorama模块--兼容linux和windows各个版本:
# -----------------colorama模块的一些常量---------------------------
# Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
# Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
# Style: DIM, NORMAL, BRIGHT, RESET_ALL
#

from colorama import  init, Fore, Back, Style
init(autoreset=True)
class Colored(object):

    #  前景色:红色  背景色:默认
    def red(self, s):
        return Fore.RED + s + Fore.RESET

    #  前景色:绿色  背景色:默认
    def green(self, s):
        return Fore.GREEN + s + Fore.RESET

    #  前景色:黄色  背景色:默认
    def yellow(self, s):
        return Fore.YELLOW + s + Fore.RESET

    #  前景色:蓝色  背景色:默认
    def blue(self, s):
        return Fore.BLUE + s + Fore.RESET

    #  前景色:洋红色  背景色:默认
    def magenta(self, s):
        return Fore.MAGENTA + s + Fore.RESET

    #  前景色:青色  背景色:默认
    def cyan(self, s):
        return Fore.CYAN + s + Fore.RESET

    #  前景色:白色  背景色:默认
    def white(self, s):
        return Fore.WHITE + s + Fore.RESET

    #  前景色:黑色  背景色:默认
    def black(self, s):
        return Fore.BLACK

    #  前景色:白色  背景色:绿色
    def white_green(self, s):
        return Fore.WHITE + Back.GREEN + s + Fore.RESET + Back.RESET

color = Colored()
print color.red('I am red!')
print color.green('I am gree!')
print color.yellow('I am yellow!')
print color.blue('I am blue!')
print color.magenta('I am magenta!')
print color.cyan('I am cyan!')
print color.white('I am white!')
print color.white_green('I am white green!')
运行效果:
    

       

--结束END--

本文标题: Python终端显示彩色字符(封装了Co

本文链接: https://lsjlt.com/news/188413.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Python终端显示彩色字符(封装了Co
                          By qianghaohao(CodeNutter)          有时候需要在终端显示彩色的字符,即根据需要显示不同颜色的字符串,比如我们要在 终端打印一行错误提示信息,要把它弄成红色的...
    99+
    2023-01-31
    终端 装了 字符
  • CentOS中怎么设置终端显示字符界面区域的大小
    这篇文章给大家分享的是有关CentOS中怎么设置终端显示字符界面区域的大小的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。修改 /boot/grub/grub.conf在kernel 后加上 vga=ask重启后会...
    99+
    2023-06-10
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作