美文网首页
Termcolor包的使用

Termcolor包的使用

作者: csuhan | 来源:发表于2019-10-05 13:14 被阅读0次

termcolor包是用来给命令行中文字添加颜色等效果的库,其使用十分简单。

  1. 安装
pip install termcolor
  1. 使用。其基本方法有:colored,cprint
    其中cprint相当于print(colored(something))
    两个函数的参数完全相同:cprint('sometext','color','on_color',attrs=[])
    其中color可选:
grey
red
green
yellow
blue
magenta
cyan
white

on_color即为背景色,可选:

on_grey
on_red
on_green
on_yellow
on_blue
on_magenta
on_cyan
on_white

attrs为其他参数,可组合使用,可选:

bold
dark
underline
blink
reverse
concealed
  1. 实例:
from termcolor import  colored,cprint

# print(colored(something)) equals cprint(something)
colored_text = colored("hello,wolrd",'cyan')
print(colored_text)

cprint("hello,wolrd",'cyan')

cprint("hello,world",'green','on_yellow',attrs=['bold','underline'])

# generated by http://asciiflow.com
demo_text = '''
+----------------------------------+
|                                  |
|                                  |
|                                  |
|       Mask R-CNN Test Tool       |
|                                  |
|                                  |
|                   author:csuhan  |
+----------------------------------+
'''
cprint(demo_text,'magenta',attrs=['bold','reverse'])

运行结果:


result

相关文章

  • Termcolor包的使用

    termcolor包是用来给命令行中文字添加颜色等效果的库,其使用十分简单。 安装 使用。其基本方法有:color...

  • string

    strings包的使用 strconv包的使用

  • 包的使用

    在$GOPATH/src下,目录结构这样。 其中main.go的代码是这样的 package main impor...

  • 学习小组day6笔记-钟能能

    R中的包 1.如何安装并使用R包(以dplyr包为例) 2.dplyr包的使用示例 更多dplyr包的操作可使用R...

  • 文件复制

    1.使用io包: 2.使用os包循环遍历读取写入: 3.使用ioutil包:

  • 简单线性回归分析

    使用包basicTrendline。 安装包 查看已经安装的包 调用包 载入数据 为了方便调用,使用attach方...

  • linux 指南II 软件安装

    包全名与包名包全名:操作的包是没有安装的软件包时,使用包全名。而且要注意路径包名: 操作已经安装的软件包时,使用包...

  • linux 安装命令管理

    包全名与包名包全名:操作的包是没有安装的软件包时,使用包全名而且要注意路径包名: 操作已经安装的软件包,使用包名 ...

  • go_教程_02

    使用包 error 并发--Goroutines 使用包 error 并发--Goroutines

  • kotlin启动activity

    不使用anko包启动 anko包优化了启动,findViewById(直接使用xml里)使用anko包启动(org...

网友评论

      本文标题:Termcolor包的使用

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