python colorama模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python colorama模块相关的知识,希望对你有一定的参考价值。

from colorama import init
from colorama import Fore, Back, Style
init()

def sprint(msg):
    print(Fore.GREEN + msg + Style.RESET_ALL)
    Style.RESET_ALL

def fprint(msg):
    print(Fore.RED + msg + Style.RESET_ALL)
    

以上是关于python colorama模块的主要内容,如果未能解决你的问题,请参考以下文章

python colorama模块

python通过colorama模块在控制台输出彩色文字的方法

python colorama模块

为啥我的python中的colorama模块没用呢

发生异常:ModuleNotFoundError 没有名为“colorama”的模块

漂亮的输出-----prettytable和colorama的使用