使用termcolor模块

问题来源:http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python


win7下此操作无效


使用termcolor模块对输出内容颜色进行处理。

例如:

from termcolor import colored

print colored('hello', 'red'), colored('world', 'green')

使用termcolor模块_第1张图片

详细参考:

https://pypi.python.org/pypi/termcolor


你可能感兴趣的:(使用termcolor模块)