Python - Colored


Termcolor (Simple)
from termcolor import colored
print(colored('Hello World', 'green'))
print(colored('Hello World', 'cyan', 'on_magenta', attrs=['blink', 'bold']))
Colored (Complex)

More colors but harder to use