how to change the color when you print in python code example
Example 1: how to color print in python
#pip install termcolor
from termcolor import cprint
cprint('Hello, World! In yellow highlighted in red!', 'yellow', 'on_red')
cprint('Hello, World! Underlined in red!', 'red', attrs=["underline"])
Example 2: python print color
# Python program to print
# green text with red background
#pip install termcolor
#pip install colorama
from colorama import init
from termcolor import colored
init()
print(colored('Hello, World!', 'green', 'on_red'))