python print颜色输出函数

2019-02-26  本文已影响0人  小王同学123321

定义一个python使用print时打印结果有颜色:

def printinfo(type, info):
    if type == 'info':
        print '\033[1;32m {0}\033[0m'.format(info).encode('utf8')
    elif type == 'error':
        print '\033[1;31m {0} \033[0m'.format(info).encode('utf8')
    elif type == 'warning':
        print '\033[1;33m {0}\033[0m'.format(info).encode('utf8')
    elif type == 'success':
        print '\033[1;36m {0}\033[0m'.format(info).encode('utf8')
上一篇下一篇

猜你喜欢

热点阅读