Python Program to Print Colored Text to the Terminal (Using python module termcolor)

bookmark

from termcolor import colored

print(colored('Programiz', 'blue'))

 

Output

Programiz