嘿,有Stackoverflow的记者,
任何人都可以告诉我如何更改CLINT
模块的进度条颜色
我尝试使用模块termcolor
但失败了
提前致谢
答案 0 :(得分:0)
CLINT
有自己设定颜色的方法。
from clint.textui import colored
red_text = colored.red("Red Text") # This is a 'red-string' object
print(red_text) # This will be printed in red.
也许你可以改变作为进度条打印的字符的颜色。