Is there any python equivalent for perl\'s
print color \'red\'; print ; print color \'reset\';
available in python?
A side note: Windows users should run os.system('color') first, otherwise you would see some ANSI escape sequences rather than a colored output.
os.system('color')