Python Program to Print Colored Text to the Terminal (Using python module termcolor)
from termcolor import colored
print(colored('Programiz', 'blue'))
Output
Programiz
from termcolor import colored
print(colored('Programiz', 'blue'))
Output
Programiz