无法打印彩色文本,它将在Python中返回33 [0; 37m文本33 [0m

时间:2019-07-15 05:12:59

标签: python

我使用打印

('\033[0;37m' + text + '\033[0m')

但是它不能打印彩色文本,它将打印出[0;31m text [0m

我尝试使用不同的颜色代码,但仍会打印出该颜色代码。

text=" some color "
print('\033[0;37m' + text + '\033[0m')

它将打印出

 [0;31m some color [0m 

无法打印彩色文本

这是python代码

enter image description here

这是输出

enter image description here

0 个答案:

没有答案