python实现控制台打印的方法

作者:快乐的霖霖 时间:2021-12-18 12:21:04 

如下所示:


#!/usr/bin/env python
import os
import sys

class CConsole:
M_MAP_COLOR = {\
'COLOR_BLACK' : "\033[0;30m",
'COLOR_RED' : "\033[0;31m",
'COLOR_GREEN' : "\033[0;32m",
'COLOR_YELLOW' : "\033[0;33m",
'COLOR_BLUE' : "\033[0;34m",
'COLOR_PUPPLE' : "\033[0;35m",
'COLOR_CYAN' : "\033[0;36m",
'COLOR_WHITE' : "\033[0;37m",
'COLOR_RESTORE' : "\033[0m",
}

@staticmethod
def ColorPrint(strPrint, strColor = None):
 strPrint = str(strPrint)
 if strColor in CConsole.M_MAP_COLOR.keys():
  strMsg = CConsole.M_MAP_COLOR[strColor] + strPrint + CConsole.M_MAP_COLOR['COLOR_RESTORE']
 else:
  strMsg = strPrint

print(strMsg)
 sys.stdout.flush()

来源:https://blog.csdn.net/chdhust/article/details/77227550

标签:python,控制台,打印
0
投稿

猜你喜欢

  • 基于Python脚本实现邮件报警功能

    2023-02-04 17:16:41
  • 如何用CocosCreator制作微信小游戏

    2023-08-23 16:00:02
  • MySQL 回表,覆盖索引,索引下推

    2024-01-21 12:56:59
  • OpenCV半小时掌握基本操作之图像轮廓

    2022-08-22 12:43:13
  • tensorflow实现残差网络方式(mnist数据集)

    2023-08-10 08:33:31
  • Python全栈之学习CSS(1)

    2022-11-07 19:05:18
  • python __init__与 __new__的区别

    2022-05-04 01:27:57
  • Python中re.findall()用法详解

    2023-08-09 23:46:14
  • Python进程的通信Queue、Pipe实例分析

    2021-11-22 13:50:44
  • Python的Flask框架使用Redis做数据缓存的配置方法

    2024-01-21 18:37:47
  • 解决Django no such table: django_session的问题

    2022-04-13 22:06:21
  • Vue+Antv F2实现层叠柱状图

    2023-07-02 16:54:55
  • Python中让MySQL查询结果返回字典类型的方法

    2024-01-25 04:37:33
  • 关于reflow

    2007-09-23 13:30:00
  • 如何利用python将Xmind用例转为Excel用例

    2022-06-18 19:18:46
  • Python 中 sorted 如何自定义比较逻辑

    2021-09-16 23:43:37
  • Python Django项目和应用的创建详解

    2023-12-26 15:03:52
  • python实现的多线程端口扫描功能示例

    2023-02-02 10:18:29
  • Python中shutil模块的学习笔记教程

    2022-12-22 20:42:05
  • Python ADF 单位根检验 如何查看结果的实现

    2021-05-24 13:40:39
  • asp之家 网络编程 m.aspxhome.com