码迷,mamicode.com
首页 > 编程语言 > 详细

python colorama模块

时间:2020-02-10 18:32:54      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:war   tomat   自动   ora   cin   令行   格式   containe   自己   

colorama是一个python专门用来在控制台、命令行输出彩色文字的模块,可以跨平台使用。

1. 安装colorama模块

1
pip install colorama

  

可用格式常数:

1
2
3
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

  

跨平台印刷彩色文本可以使用彩色光的常数简称ANSI转义序列:

1
2
3
4
5
6
from colorama import Fore,Back,Style
print (Fore.RED + "some red text")
print (Back.GREEN + "and with a green background")
print (Style.DIM + "and in dim text")
print (Style.RESET_ALL)
print ("back to normal now!!")

  


Init关键字参数:
init()接受一些* * kwargs覆盖缺省行为

1
init(autoreset = False):

  


如果你发现自己一再发送重置序列结束时关闭颜色变化每一个打印,然后init(autoreset = True)将自动化
示例:

1
2
3
4
from colorama import init,Fore
init(autoreset=True)
print (Fore.RED + "welcome to python !!")
print ("automatically back to default color again")

python colorama模块

标签:war   tomat   自动   ora   cin   令行   格式   containe   自己   

原文地址:https://www.cnblogs.com/waw/p/12291682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!