在平时工作中经常会使用python脚本编写一些程序或工具,经常需要在控制台输出一些信息,例如:请输入用户名、密码等。如果用户名不合法输出‘用户名不规范’等提示信息。但这样输出默认都是黑底白字,不容易区分重要的提示信息,如何才能做的更高端一些呢?
就像 Linux 命令行的提示,像这样:
命令行的提示信息给用户的视觉感受真的很重要,其实我们也可以做到 Linux 命令行这样,废话不多说,上案例。
class Color(object):
GREEN = '\033[92m'
YELLOW = '\033[93m'
RED = '\033[91m'
BlUE = '\033[94m'
END = '\033[0m'
@classmethod
def red(cls, string):
return cls.RED + string + cls.END
@classmethod
def green(cls, string):
return cls.GREEN + string + cls.END
@classmethod
def yellow(cls, string):
return cls.YELLOW + string + cls.END
@classmethod
def cyan(cls, string):
return cls.BlUE + string + cls.END
if __name__ == '__main__':
green = Color.green('this is green, such as ....ok')+' over'
red = Color.red('this is red, such as error:xxxxxx')+' over'
yellow = Color.yellow('this is yellow, such as warning........')+' over'
blue = Color.cyan('this is blue, such as, information')+' over'
print(green)
print(red)
print(yellow)
print(blue)
您的赞就是我写文章的动力,如果对您有一点点帮助的话,老铁,不要吝啬,请留下您的赞。