PyShell python中的颜色更改对我不起作用

时间:2016-11-24 08:46:33

标签: windows python-3.x colors

我是编程新手,所以我为愚蠢的问题道歉。我在Windows上使用Python 3.5.2。

我正在尝试在我的pyShell中打印颜色,因为作为一个新手,这就是我学习编码的地方......我不明白为什么youtube上的所有示例都在Windows命令提示符上

无论如何,我安装了colorama

代码:

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

在我的PyShell上我得到了...奇怪的字符和代码都是蓝色的。 例如:

[31msome red text
[42mand with a green background
[2mand in dim text
[0m
back to normal now

请帮助或我将制作我的电脑。 ..thanks ...笑

1 个答案:

答案 0 :(得分:0)

您需要使用以下方式初始化Colorama:

from colorama import init
init()

一切都适用于你的代码。