colorama 是一个python专门用来在控制台、命令行输出彩色文字的模块,完全兼容linux和windows各个版本。
1.Python3.x中安装 colorama 模块:
pip install colorama
'''
可用格式常数:【颜色RED,GREEN都需要大写】
Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
Style: DIM, NORMAL, BRIGHT, RESET_ALL
from colorama import init,Fore,Back,Style
init(autoreset=True)#初始化,并且设置颜色设置自动恢复
print('默认字符颜色')
print(Fore.RED + '文本加红色')
print(Fore.YELLOW + '文本加黄色')
print(Back.WHITE + '文本背景加白色')
print(Style.DIM + 'and in dim text')
# 如果未设置autoreset=True,需要使用如下代码重置终端颜色为初始设置
# print(Fore.RESET + Back.RESET + Style.RESET_ALL) autoreset=True
print("默认字符颜色")
标签:RESET,字符,Style,Python,彩色,Fore,colorama,print,RED From: https://www.cnblogs.com/codtina/p/18328193