美文网首页
python print颜色输出函数

python print颜色输出函数

作者: 小王同学123321 | 来源:发表于2019-02-26 15:35 被阅读0次

定义一个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')

相关文章

网友评论

      本文标题:python print颜色输出函数

      本文链接:https://www.haomeiwen.com/subject/nugayqtx.html