python实现控制台打印的方法
如下所示:
#!/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() 相关推荐
ljsfighting 2020-10-31
littleFatty 2020-08-16
katanaFlower 2020-06-21
CXC0 2020-06-14
caiyiii 2020-06-14
woxmh 2020-06-12
unit00 2020-06-07
ccjjyy 2020-05-21
Airuio 2020-05-19
JavaWinner 2020-05-10
福叔 2020-03-20
xinlugang 2020-03-07
陈晨软件五千言 2020-02-17
pushTop 2020-01-02
curiousL 2020-01-05
方志朋 2020-01-04