python colorama模块

python colorama模块

 

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" )

转载于:https://www.cnblogs.com/caizhao/p/7905281.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值