I am trying to change the colour of a certain line of text. I have looked at other articles (including Change shell print color in python 3.3.2) but none of the work. I would not like to install any external modules if that is possible.
My code:
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.')
I am using Python 3.2.3 on Linux. Thanks for any responses.