gpt4 book ai didi

python - Colorama 在 cmd 中使用 python 失败

转载 作者:行者123 更新时间:2023-12-01 07:06:40 26 4
gpt4 key购买 nike

我第一次尝试使用 colorama,但失败了 - 我成功导入了所需的所有内容,但输出错误。

我尝试运行此代码:

from colorama import Fore, Back, Style
print(Fore.RED + 'some red text')

但是打印的文本看起来像这样,并且没有任何颜色(常规 cmd 白色):

[31msome red text

如果你能帮我解决这个问题,我会很高兴。谢谢!

最佳答案

看来您已经忘记(或不知道)colorama.init()这是颜色正常工作所必需的。

亲自尝试以下示例。

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

print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Style.BRIGHT + 'and in bright text')
print(Style.RESET_ALL)
print('back to normal now')

关于python - Colorama 在 cmd 中使用 python 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58419328/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com