我有一个包含python代码的python文件名test.py。
print "THIS IS TEST"
print "THIS IS GOOD"
print "THIS IS BAD"
我想在任何编辑器中更改该行的字体\颜色或背景
print "THIS IS GOOD"
我该怎么做?
如果其编辑具体,哪个编辑器允许我使用代码在文件本身中进行此类更改? IDLE,Eclipse,Notepad ++还是其他什么?
请让我知道任何编辑器及其脚本示例,通过它我可以在其中查看更改后的文件。
我不希望在终端打印。我需要在ECLIPSE,NOTEPAD ++或IDLE中突出显示行/更改字体。
答案 0 :(得分:1)
Print in terminal with colors using Python?
这个问题会有所帮助。
一个例子:
print '\033[94m'+"THIS IS GOOD"+'\033[0m'
由于您引用了#34; notepad ++",我猜您在Windows上工作。所以,试试这个:
Change shell print color in python 3.3.2
from subprocess import call
call('color a', shell=True) #this sets the color to light green
print('The quick brown fox jumps over the lazy dog.')